]> oss.titaniummirror.com Git - msp430-gcc.git/blobdiff - gcc/testsuite/g++.old-deja/g++.brendan/misc11.C
Imported gcc-4.4.3
[msp430-gcc.git] / gcc / testsuite / g++.old-deja / g++.brendan / misc11.C
diff --git a/gcc/testsuite/g++.old-deja/g++.brendan/misc11.C b/gcc/testsuite/g++.old-deja/g++.brendan/misc11.C
deleted file mode 100644 (file)
index 043f6a5..0000000
+++ /dev/null
@@ -1,20 +0,0 @@
-// Build don't link: 
-// GROUPS passed miscellaneous
-// This should not complain about A::f being abstract.
-struct A
-{
-       virtual int f() = 0;
-};
-
-struct B : virtual A
-{
-       virtual int f()         {       return 1;       }
-       virtual int g() = 0;
-};
-
-struct C: B
-{
-       int g()                 {       return 2;       }
-};
-
-C      c;