Files
c3c/test/test_suite/statements/for.c3

25 lines
179 B
Plaintext

module for_test;
fn int test1()
{
for (int x = 0;;)
{
}
}
fn int test2()
{
for (int x = 0; 1 ;)
{
}
}
fn int test3()
{
for (; 1 ;2)
{
}
}