1 /* { dg-do compile } */
2 /* { dg-options "-O -Wall" } */
3 
foo()4 void foo()
5 {
6   while (1)
7     for (;;({ continue; }))
8       ;
9 }
10