leo/compiler/tests/import/multiple.leo
2020-08-16 19:14:26 -07:00

10 lines
137 B
Plaintext

import test-import.(
Point,
foo
);
function main() {
let a = Point { x: 1u32, y: 0u32 };
console.assert(a.x == 1u32);
}