]> oss.titaniummirror.com Git - msp430-gcc.git/blobdiff - gcc/testsuite/g++.old-deja/g++.other/virtual7.C
Imported gcc-4.4.3
[msp430-gcc.git] / gcc / testsuite / g++.old-deja / g++.other / virtual7.C
diff --git a/gcc/testsuite/g++.old-deja/g++.other/virtual7.C b/gcc/testsuite/g++.old-deja/g++.other/virtual7.C
deleted file mode 100644 (file)
index 8b5338e..0000000
+++ /dev/null
@@ -1,17 +0,0 @@
-// Build don't link:
-// Special g++ Options: -fno-rtti
-// Origin: Anthony Green <green@cygnus.com>
-
-class _JvObjectPrefix
-{
-protected:
-  virtual void finalize (void) = 0;
-};
-
-class Object : public _JvObjectPrefix
-{
-protected:
-  virtual void finalize (void);
-};
-
-Object x;