]> oss.titaniummirror.com Git - msp430-gcc.git/blobdiff - gcc/testsuite/g++.old-deja/g++.pt/t06.C
Imported gcc-4.4.3
[msp430-gcc.git] / gcc / testsuite / g++.old-deja / g++.pt / t06.C
diff --git a/gcc/testsuite/g++.old-deja/g++.pt/t06.C b/gcc/testsuite/g++.old-deja/g++.pt/t06.C
deleted file mode 100644 (file)
index 8681f53..0000000
+++ /dev/null
@@ -1,25 +0,0 @@
-// Build don't link: 
-
-typedef int I;
-int i;
-
-template <class A> class B {
-  A a;
- public:
-  B(A&aa);
-  B();
-  ~B();
-};
-
-template <class B> class C { public: B b; };
-
-template <class I, class i> class D : I { public: i ii; };
-
-typedef B<int> b_int;
-typedef C<int> c_int;      
-typedef C<b_int> c_b_int2; 
-
-c_b_int2 x2;
-int z;
-D<c_b_int2,b_int> d;
-int q;