]> oss.titaniummirror.com Git - msp430-gcc.git/blobdiff - gcc/testsuite/g++.old-deja/g++.other/dtor9.C
Imported gcc-4.4.3
[msp430-gcc.git] / gcc / testsuite / g++.old-deja / g++.other / dtor9.C
diff --git a/gcc/testsuite/g++.old-deja/g++.other/dtor9.C b/gcc/testsuite/g++.old-deja/g++.other/dtor9.C
deleted file mode 100644 (file)
index 6f0d5ac..0000000
+++ /dev/null
@@ -1,23 +0,0 @@
-int i;
-
-struct CC
-{
-  virtual ~CC () { ++i; }
-};
-
-class BB : virtual public CC
-{
-};
-
-class AA : public virtual BB
-{
-};
-
-int main ()
-{
-  {
-    AA xx;
-  }
-  if (i != 1)
-    return 1;
-}