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

12 lines
106 B
Plaintext

import "a";
/*@api*/
B :: proc(): int {
return A();
}
B_NO_API :: proc() {
}
/*@api*/
BCONST :: 32;