]> oss.titaniummirror.com Git - msp430-gcc.git/blobdiff - gcc/testsuite/g++.old-deja/g++.other/vbase1.C
Imported gcc-4.4.3
[msp430-gcc.git] / gcc / testsuite / g++.old-deja / g++.other / vbase1.C
diff --git a/gcc/testsuite/g++.old-deja/g++.other/vbase1.C b/gcc/testsuite/g++.old-deja/g++.other/vbase1.C
deleted file mode 100644 (file)
index 99a3867..0000000
+++ /dev/null
@@ -1,51 +0,0 @@
-// Origin: Mark Mitchell <mark@codesourcery.com>
-// Special g++ Options: -w
-
-int result;
-
-struct A {
-  A ();
-
-  int i;
-};
-
-A* ap;
-
-A::A ()
-{
-  ap = this;
-}
-
-struct B : virtual public A
-{
-  B ();
-  ~B ();
-
-  int j;
-};
-
-B::B () {
-  if ((A*) this != ap)
-    result = 1;
-}
-
-B::~B () {
-  if ((A*) this != ap)
-    result = 1;
-}
-
-struct C : public B {
-};
-
-struct D : public C, public B
-{
-};
-
-int main ()
-{
-  {
-    D d;
-  }
-
-  return result;
-}