]> oss.titaniummirror.com Git - msp430-gcc.git/blobdiff - gcc/testsuite/g++.old-deja/g++.abi/vbase5.C
Imported gcc-4.4.3
[msp430-gcc.git] / gcc / testsuite / g++.old-deja / g++.abi / vbase5.C
diff --git a/gcc/testsuite/g++.old-deja/g++.abi/vbase5.C b/gcc/testsuite/g++.old-deja/g++.abi/vbase5.C
deleted file mode 100644 (file)
index 6a3bbfb..0000000
+++ /dev/null
@@ -1,22 +0,0 @@
-// Build don't link:
-// 
-// Copyright (C) 2001 Free Software Foundation, Inc.
-// Contributed by Nathan Sidwell 12 Jun 2001 <nathan@codesourcery.com>
-
-// 3130. A virtual base can have canonical and non-canonical instances
-// of its primary. The canonical one should be first in dfs order.
-
-struct A
-{
-  virtual ~A ();
-};
-
-struct B
-{
-  virtual ~B ();
-};
-
-
-struct C : virtual public A, virtual public B {};
-class D : public virtual C {};
-class E : public virtual C, public virtual D {};