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

6 lines
100 B
Plaintext

// #failed: resolve
// #error: break outside of a for loop is illegal
main :: proc() {
break;
}