mirror of
https://github.com/c3lang/c3c.git
synced 2026-02-27 12:01:16 +00:00
25 lines
179 B
Plaintext
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)
|
|
{
|
|
}
|
|
}
|