]> oss.titaniummirror.com Git - msp430-gcc.git/blobdiff - gcc/testsuite/g++.old-deja/g++.other/debug6.C
Imported gcc-4.4.3
[msp430-gcc.git] / gcc / testsuite / g++.old-deja / g++.other / debug6.C
diff --git a/gcc/testsuite/g++.old-deja/g++.other/debug6.C b/gcc/testsuite/g++.old-deja/g++.other/debug6.C
deleted file mode 100644 (file)
index 43f13b9..0000000
+++ /dev/null
@@ -1,24 +0,0 @@
-// Build don't link:
-// Special g++ Options: -g -O2
-
-//  Copyright (C) 1999 Free Software Foundation, Inc.
-//  Contributed by Nathan Sidwell 21 Nov 1999 <nathan@acm.org>
-
-// This causes assember relocation errors
-
-struct X
-{
-  virtual ~X () {}
-};
-
-struct Y
-{
-  Y (){};
-};
-
-void foo ()
-{
-  X *x = new X;
-  x->~X ();
-  Y ys[2];
-}