]> oss.titaniummirror.com Git - msp430-gcc.git/blobdiff - gcc/testsuite/gcc.c-torture/unsorted/BUG5.c
Imported gcc-4.4.3
[msp430-gcc.git] / gcc / testsuite / gcc.c-torture / unsorted / BUG5.c
diff --git a/gcc/testsuite/gcc.c-torture/unsorted/BUG5.c b/gcc/testsuite/gcc.c-torture/unsorted/BUG5.c
deleted file mode 100644 (file)
index 9bed713..0000000
+++ /dev/null
@@ -1,18 +0,0 @@
-enum bar
-{
-  one,
-  two
-};
-
-enum bar foo;
-
-void bar()
-{
-  switch (foo)
-  {
-    case one:
-    case two:
-      printf ("one to two\n");
-    break;
-  }
-}