aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.8/gcc/testsuite/gcc.dg/switch-3.c
diff options
context:
space:
mode:
Diffstat (limited to 'gcc-4.8/gcc/testsuite/gcc.dg/switch-3.c')
-rw-r--r--gcc-4.8/gcc/testsuite/gcc.dg/switch-3.c12
1 files changed, 0 insertions, 12 deletions
diff --git a/gcc-4.8/gcc/testsuite/gcc.dg/switch-3.c b/gcc-4.8/gcc/testsuite/gcc.dg/switch-3.c
deleted file mode 100644
index 593c42d8b..000000000
--- a/gcc-4.8/gcc/testsuite/gcc.dg/switch-3.c
+++ /dev/null
@@ -1,12 +0,0 @@
-/* PR c/9262 */
-/* Originator: Rasmus Hahn <rassahah@neofonie.de> */
-/* { dg-do compile } */
-
-int foo(int i)
-{
- switch (i)
- case 3:
- return 1;
- case 4: /* { dg-error "not within a switch statement" } */
- return 1;
-}