mirror of
https://github.com/c3lang/c3c.git
synced 2026-02-27 03:51:18 +00:00
12 lines
139 B
Plaintext
12 lines
139 B
Plaintext
fn void abc()
|
|
{
|
|
if (var foo) {} // #error: must always have an
|
|
}
|
|
|
|
fn void abc2()
|
|
{
|
|
for (var foo;;) {} // #error: must always have an
|
|
}
|
|
|
|
|