]> oss.titaniummirror.com Git - msp430-gcc.git/blobdiff - gcc/testsuite/g++.old-deja/g++.oliva/template8.C
Imported gcc-4.4.3
[msp430-gcc.git] / gcc / testsuite / g++.old-deja / g++.oliva / template8.C
diff --git a/gcc/testsuite/g++.old-deja/g++.oliva/template8.C b/gcc/testsuite/g++.old-deja/g++.oliva/template8.C
deleted file mode 100644 (file)
index 4319b22..0000000
+++ /dev/null
@@ -1,18 +0,0 @@
-// Build don't link:
-
-// Copyright (C) 1999 Free Software Foundation
-
-// by Alexandre Oliva <oliva@dcc.unicamp.br>
-// simplified from bug report by redleaf <e1wwater@dingo.cc.uq.edu.au>
-
-struct B {
-  template <class> void bar();
-} b;
-
-template <class T> void foo() {
-  b.bar<T>(); // no longer gets bogus error - bar undeclared
-  b.template bar<T>(); // no longer gets bogus error - ditto
-  b.B::bar<T>(); // ok
-}
-
-template void foo<void>(); // no longer gets bogus error