aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.8.1/gcc/testsuite/g++.dg/parse/break-in-for.C
diff options
context:
space:
mode:
Diffstat (limited to 'gcc-4.8.1/gcc/testsuite/g++.dg/parse/break-in-for.C')
-rw-r--r--gcc-4.8.1/gcc/testsuite/g++.dg/parse/break-in-for.C12
1 files changed, 0 insertions, 12 deletions
diff --git a/gcc-4.8.1/gcc/testsuite/g++.dg/parse/break-in-for.C b/gcc-4.8.1/gcc/testsuite/g++.dg/parse/break-in-for.C
deleted file mode 100644
index 3028cdc80..000000000
--- a/gcc-4.8.1/gcc/testsuite/g++.dg/parse/break-in-for.C
+++ /dev/null
@@ -1,12 +0,0 @@
-/* PR17412 - ICE in fold_const.c during parsing.
- fold would try to fold the operands of the break statement. */
-/* { dg-do compile } */
-/* { dg-options "" } */
-
-
-void foo ()
-{
- for (;;)
- for (;;({break;}));
-}
-