Files
lib_compiler/tests/accessing_variable_across_modules/main/test_unused.lc
2024-06-10 06:56:53 +02:00

8 lines
116 B
Plaintext

import b "second";
main :: proc(): int {
a: int;
b.cool_variable = &a;
b.other_thing();
return 0;
}