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

32 lines
312 B
Plaintext

// #skip
module for_test;
public func int main()
{
for (;;) {}
return 0;
}
public func int test1()
{
for (int x = 0;;)
{
}
return 0;
}
public func int test2()
{
for (int x = 0; 1 ;)
{
}
return 0;
}
public func int test3()
{
for (; 1 ;2)
{
}
return 0;
}