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

7 lines
107 B
Plaintext

// #failed: resolve
// #error: unused local variable 'a'
main :: proc(): int {
a: int;
return 0;
}