Files
c3c/test/test_suite/statements/while_statement_placement.c3
2021-11-16 17:46:44 +01:00

11 lines
152 B
C

fn void test1()
{
int a;
while (1) a++;
while (1)
{
a++;
}
while (1)
a++; // #error: must be placed on the same line
}