mirror of
https://github.com/c3lang/c3c.git
synced 2026-02-27 12:01:16 +00:00
12 lines
242 B
Plaintext
12 lines
242 B
Plaintext
// #deprecation: no
|
|
module fe;
|
|
import std::io;
|
|
extern fn int printf(char *str, ...);
|
|
|
|
fn int main()
|
|
{
|
|
while(true)
|
|
{
|
|
return {| break; return 0; |}; // #error: There is no valid target for 'break', did you make a mistake
|
|
}
|
|
} |