leo/tests/compiler/import/alias.leo

5 lines
86 B
Plaintext
Raw Normal View History

2020-09-18 22:41:38 +03:00
import test-import.foo as bar;
2020-07-30 23:01:04 +03:00
function main() {
2020-08-17 05:14:26 +03:00
console.assert(bar() == 1u32);
}