]> oss.titaniummirror.com Git - msp430-gcc.git/blobdiff - gcc/testsuite/g++.old-deja/g++.pt/t13.C
Imported gcc-4.4.3
[msp430-gcc.git] / gcc / testsuite / g++.old-deja / g++.pt / t13.C
diff --git a/gcc/testsuite/g++.old-deja/g++.pt/t13.C b/gcc/testsuite/g++.old-deja/g++.pt/t13.C
deleted file mode 100644 (file)
index 2f589a7..0000000
+++ /dev/null
@@ -1,19 +0,0 @@
-// Build don't link: 
-
-template <class A> class B {
-public:
-  B();
-  A a;
-  int i;
-};
-
-void *f () {
-  return new B<char *>;
-}
-
-struct foo { int i[10]; };
-extern B<foo> *foop;
-
-void f2 () {
-  foop = new B<foo>;
-}