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

9 lines
158 B
Plaintext

// #failed: resolve
// #error: undeclared identifier 'meme'
A: meme;
main :: proc(): int {
// #error: undeclared identifier 'asd'
a: asd;
return a;
}