]> oss.titaniummirror.com Git - msp430-gcc.git/blobdiff - gcc/testsuite/g++.old-deja/g++.law/ctors13.C
Imported gcc-4.4.3
[msp430-gcc.git] / gcc / testsuite / g++.old-deja / g++.law / ctors13.C
diff --git a/gcc/testsuite/g++.old-deja/g++.law/ctors13.C b/gcc/testsuite/g++.old-deja/g++.law/ctors13.C
deleted file mode 100644 (file)
index 1442b02..0000000
+++ /dev/null
@@ -1,18 +0,0 @@
-// Build don't link: 
-// GROUPS passed constructors
-#include <iostream>
-
-class A {
-   A() {}    // private constructor// ERROR - .*
-};
-
-int main() {
-  A* a = new A();// ERROR - .*
-  if (a) {
-     std::cout << "a != NULL\n";
-  } else {
-     std::cout << "a == NULL\n";
-  }
-}
-
-