Files
lib_compiler/tests/test_namespaced_import/main/c.lc
2024-04-13 15:29:53 +02:00

10 lines
145 B
Plaintext

import b "b";
main :: proc(): int {
result := b.B();
// b.B_NO_API();
b.A();
b;
co := b.BCONST; @unused
return result;
}