]> oss.titaniummirror.com Git - msp430-gcc.git/blobdiff - gcc/testsuite/g++.old-deja/g++.other/debug8.C
Imported gcc-4.4.3
[msp430-gcc.git] / gcc / testsuite / g++.old-deja / g++.other / debug8.C
diff --git a/gcc/testsuite/g++.old-deja/g++.other/debug8.C b/gcc/testsuite/g++.old-deja/g++.other/debug8.C
deleted file mode 100644 (file)
index 2b78be2..0000000
+++ /dev/null
@@ -1,21 +0,0 @@
-// Build don't link:
-// Special g++ Options: -g
-
-struct X {
-  const int x[4];
-};
-
-struct A {
-  A();
-  A(const A&);
-};
-
-struct B {
-  A a;
-  int b[4];
-};
-
-struct C {
-  A a;
-  C() { B b=B(); };
-};