]> oss.titaniummirror.com Git - msp430-gcc.git/blobdiff - gcc/testsuite/g++.old-deja/g++.oliva/ctor1.C
Imported gcc-4.4.3
[msp430-gcc.git] / gcc / testsuite / g++.old-deja / g++.oliva / ctor1.C
diff --git a/gcc/testsuite/g++.old-deja/g++.oliva/ctor1.C b/gcc/testsuite/g++.old-deja/g++.oliva/ctor1.C
deleted file mode 100644 (file)
index d6f1d0c..0000000
+++ /dev/null
@@ -1,19 +0,0 @@
-// Build don't link:
-
-// Copyright (C) 1999 Free Software Foundation
-
-// by Alexandre Oliva <oliva@dcc.unicamp.br>
-// based on bug report by Harri Porten <porten@tu-harburg.de>
-
-struct A {
-  A() : x; // ERROR - missing body
-};
-
-struct B {
-  void m() {}
-};
-
-struct C {
-  // The error message below says it is within A::B::m()!
-  void n() {}
-};