Files
c3c/test/test_suite/statements/for.c3
Christoffer Lerno 97ac957cb7 "Public by default"
2021-05-30 16:30:16 +02:00

28 lines
227 B
C

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