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