]> git.ipfire.org Git - thirdparty/gcc.git/commitdiff
Remove test
authorMark Mitchell <mmitchel@gcc.gnu.org>
Sun, 19 Nov 2000 02:25:03 +0000 (02:25 +0000)
committerMark Mitchell <mmitchel@gcc.gnu.org>
Sun, 19 Nov 2000 02:25:03 +0000 (02:25 +0000)
From-SVN: r37552

gcc/testsuite/g++.old-deja/g++.other/cleanup3.C [deleted file]

diff --git a/gcc/testsuite/g++.old-deja/g++.other/cleanup3.C b/gcc/testsuite/g++.old-deja/g++.other/cleanup3.C
deleted file mode 100644 (file)
index 33d2c4d..0000000
+++ /dev/null
@@ -1,17 +0,0 @@
-// Build don't link:
-// Special g++ Options: -fno-vtable-thunks
-// Origin:  Marc Espie <espie@tetto.liafa.jussieu.fr>
-
-struct A {
-       virtual ~A();
-       A();
-};
-
-struct B: public A {
-    B();
-};
-
-void f()
-{
-       static B t[2];
-}