leo/tests/compiler/import/alias.leo

13 lines
170 B
Plaintext
Raw Normal View History

2021-05-05 19:31:25 +03:00
/*
namespace: Compile
expectation: Pass
input_file: input/dummy.in
cwd: imports
*/
2020-09-18 22:41:38 +03:00
import test-import.foo as bar;
2021-05-05 19:31:25 +03:00
function main() -> bool {
return bar() == 1u32;
}