]> oss.titaniummirror.com Git - msp430-gcc.git/blobdiff - gcc/testsuite/g++.old-deja/g++.jason/tempsub.C
Imported gcc-4.4.3
[msp430-gcc.git] / gcc / testsuite / g++.old-deja / g++.jason / tempsub.C
diff --git a/gcc/testsuite/g++.old-deja/g++.jason/tempsub.C b/gcc/testsuite/g++.old-deja/g++.jason/tempsub.C
deleted file mode 100644 (file)
index 4b69d88..0000000
+++ /dev/null
@@ -1,28 +0,0 @@
-// Distillation of crash1.C problem (PR 3633)
-// Build don't link:
-
-template<class P>
-class A
-{
-  P p;
-};
-
-template<class Q>
-class B
-{
-  A<Q> a;                      // bogus error - temp parm name propagating
-};
-
-template<class R>
-class C
-{
-  B<R> b;
-};
-
-template<class S>
-class D
-{
-  S s;
-};
-
-C< D<int> > c;