URL
https://opencores.org/ocsvn/scarts/scarts/trunk
Subversion Repositories scarts
[/] [scarts/] [trunk/] [toolchain/] [scarts-gcc/] [gcc-4.1.1/] [gcc/] [testsuite/] [g++.dg/] [parse/] [break-in-for.C] - Rev 12
Compare with Previous | Blame | View Log
/* 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;}));
}