]> oss.titaniummirror.com Git - msp430-gcc.git/blobdiff - gcc/testsuite/g++.old-deja/g++.pt/memtemp90.C
Imported gcc-4.4.3
[msp430-gcc.git] / gcc / testsuite / g++.old-deja / g++.pt / memtemp90.C
diff --git a/gcc/testsuite/g++.old-deja/g++.pt/memtemp90.C b/gcc/testsuite/g++.old-deja/g++.pt/memtemp90.C
deleted file mode 100644 (file)
index 15dcca7..0000000
+++ /dev/null
@@ -1,19 +0,0 @@
-// Build don't link:
-// regression test - 
-
-// by Paul Burchard <burchard@pobox.com>, Level Set Systems, Inc.
-// Copyright (C) 1999 Free Software Foundation
-// related to bug report by Leon Bottou <leonb@research.att.com>
-
-struct A {
-       template<class T>
-       struct B {
-       };
-       template<class T>
-       struct C {
-               B<T> b; // gets bogus error - B is not a template
-                       // but removing wrapper A gets rid of complaint
-                       // also, replacing B<T> with A::B<T> also gets rid of complaint
-       };
-};
-