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

8 lines
92 B
Plaintext

a: [2]int;
main :: proc(): int {
a = {[1] = 2};
a = {1, 2};
return a[1] - 2;
}