]> oss.titaniummirror.com Git - msp430-gcc.git/blobdiff - gcc/testsuite/g++.dg/other/enum1.C
Imported gcc-4.4.3
[msp430-gcc.git] / gcc / testsuite / g++.dg / other / enum1.C
diff --git a/gcc/testsuite/g++.dg/other/enum1.C b/gcc/testsuite/g++.dg/other/enum1.C
deleted file mode 100644 (file)
index def0b59..0000000
+++ /dev/null
@@ -1,19 +0,0 @@
-/* PR c++/6037
-   This testcase ICEd because start_enum expected pushtag to insert
-   the tag always into current binding level.  */
-
-struct A
-{
-  ~A () { }
-};
-
-struct B
-{
-  void foo ()
-  {
-    switch (0) { default: ; }
-    A a;
-    enum C { };
-    (void) a;
-  }
-};