Files
lib_compiler/tests/stmt_parse_error1.txt
2024-04-13 15:29:53 +02:00

10 lines
117 B
Plaintext

// #failed: parser
// #error: expected close brace
main :: proc() {
for a := 0; {
A();
}
A();
}