leo/compiler/otests/import/alias.leo
2021-05-05 11:56:00 +03:00

8 lines
146 B
Plaintext

import test-import.foo as bar;
import bar.baz.ONE as UNO;
function main() {
console.assert(bar() == 1u32);
console.assert(UNO == 1u8);
}