]> oss.titaniummirror.com Git - msp430-gcc.git/blobdiff - gcc/testsuite/g++.old-deja/g++.other/virtual6.C
Imported gcc-4.4.3
[msp430-gcc.git] / gcc / testsuite / g++.old-deja / g++.other / virtual6.C
diff --git a/gcc/testsuite/g++.old-deja/g++.other/virtual6.C b/gcc/testsuite/g++.old-deja/g++.other/virtual6.C
deleted file mode 100644 (file)
index d0769fc..0000000
+++ /dev/null
@@ -1,14 +0,0 @@
-// Bug: g++ checks certain non-virtual functions to see if they override
-// virtual functions.
-// Submitted by Jason Merrill <jason@cygnus.com>
-// Special g++ Options: -Woverloaded-virtual
-// Build don't link:
-
-struct A {
-  virtual void f (int);
-};
-
-struct B: public A {
-  static void f ();
-  void f (int);
-};