]> oss.titaniummirror.com Git - msp430-gcc.git/blobdiff - gcc/testsuite/g++.old-deja/g++.brendan/crash48.C
Imported gcc-4.4.3
[msp430-gcc.git] / gcc / testsuite / g++.old-deja / g++.brendan / crash48.C
diff --git a/gcc/testsuite/g++.old-deja/g++.brendan/crash48.C b/gcc/testsuite/g++.old-deja/g++.brendan/crash48.C
deleted file mode 100644 (file)
index 86523d8..0000000
+++ /dev/null
@@ -1,22 +0,0 @@
-// Build don't link: 
-// GROUPS passed old-abort
-class internal { // ERROR - candidates are
-       int field;
-       int anotherfield;
-};
-
-class bug { // ERROR - several errors
-       internal* numbers;
-       bug(int size);
-};
-
-bug::bug(int size)
-{ // ERROR - candidates
-       numbers = new internal(size * size);// ERROR -  no match.*
-}
-
-int
-main()
-{
-       bug test;// ERROR -  no match
-}