aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/gcc.c-torture/unsorted/BUG5.c
diff options
context:
space:
mode:
Diffstat (limited to 'gcc/testsuite/gcc.c-torture/unsorted/BUG5.c')
-rw-r--r--gcc/testsuite/gcc.c-torture/unsorted/BUG5.c18
1 files changed, 0 insertions, 18 deletions
diff --git a/gcc/testsuite/gcc.c-torture/unsorted/BUG5.c b/gcc/testsuite/gcc.c-torture/unsorted/BUG5.c
deleted file mode 100644
index 9bed7136f59..00000000000
--- a/gcc/testsuite/gcc.c-torture/unsorted/BUG5.c
+++ /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;
- }
-}