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 
foo()7 void foo ()
8 {
9   for (;;)
10     for (;;({break;}));
11 }
12 
13