leo/tests/compiler/import/alias.leo
2021-05-05 19:31:25 +03:00

13 lines
170 B
Plaintext

/*
namespace: Compile
expectation: Pass
input_file: input/dummy.in
cwd: imports
*/
import test-import.foo as bar;
function main() -> bool {
return bar() == 1u32;
}