]> oss.titaniummirror.com Git - msp430-gcc.git/blobdiff - gcc/testsuite/g++.old-deja/g++.oliva/typename1.C
Imported gcc-4.4.3
[msp430-gcc.git] / gcc / testsuite / g++.old-deja / g++.oliva / typename1.C
diff --git a/gcc/testsuite/g++.old-deja/g++.oliva/typename1.C b/gcc/testsuite/g++.old-deja/g++.oliva/typename1.C
deleted file mode 100644 (file)
index bd536e3..0000000
+++ /dev/null
@@ -1,16 +0,0 @@
-// Build don't link:
-
-// Copyright (C) 1999 Free Software Foundation
-
-// by Alexandre Oliva <oliva@dcc.unicamp.br>
-// based on bug report by Nick Rasmussen <nick@jive.org>
-
-template <class T> struct foo;
-
-template <class T> struct bar {
-  typedef int foo;
-};
-
-template <class T> struct baz {
-  typedef bar<T>::foo foo; // ERROR - missing typename
-};