]> oss.titaniummirror.com Git - msp430-gcc.git/blobdiff - gcc/testsuite/g++.old-deja/g++.law/vtable2.C
Imported gcc-4.4.3
[msp430-gcc.git] / gcc / testsuite / g++.old-deja / g++.law / vtable2.C
diff --git a/gcc/testsuite/g++.old-deja/g++.law/vtable2.C b/gcc/testsuite/g++.old-deja/g++.law/vtable2.C
deleted file mode 100644 (file)
index 15b31e4..0000000
+++ /dev/null
@@ -1,18 +0,0 @@
-// Build don't link: 
-// GROUPS passed vtable
-struct C1
-{
-    virtual ~C1();
-};
-
-struct C2 : public virtual C1
-{
-        virtual ~C2();
-};
-
-struct C3 : public virtual C2
-{
-    virtual ~C3();
-};
-
-C3::~C3() {}