OSDN Git Service

cp:
[pf3gnuchains/gcc-fork.git] / gcc / testsuite / g++.dg / parse / break-in-for.C
1 /* PR17412 - ICE in fold_const.c during parsing.
2    fold would try to fold the operands of the break statement.  */
3 /* { dg-do compile } */
4 /* { dg-options "" } */
5  
6
7 void foo ()
8 {
9   for (;;)
10     for (;;({break;}));
11 }
12