]> oss.titaniummirror.com Git - msp430-gcc.git/blobdiff - gcc/testsuite/g++.old-deja/g++.other/syntax2.C
Imported gcc-4.4.3
[msp430-gcc.git] / gcc / testsuite / g++.old-deja / g++.other / syntax2.C
diff --git a/gcc/testsuite/g++.old-deja/g++.other/syntax2.C b/gcc/testsuite/g++.old-deja/g++.other/syntax2.C
deleted file mode 100644 (file)
index 5775af0..0000000
+++ /dev/null
@@ -1,28 +0,0 @@
-// Build don't link:
-// Special g++ Options: -fsyntax-only
-// Origin: Mark Mitchell <mark@codesourcery.com>
-
-struct B 
-{
-  double d;
-  
-  virtual void f ();
-};
-
-struct C: virtual public B
-{
-  char c;
-};
-
-struct D: virtual public B
-{
-  int i;
-  virtual void f ();
-};
-
-struct E : public C, public D 
-{
-};
-
-E e;
-