leo/compiler/tests/import/multiple.leo

10 lines
131 B
Plaintext
Raw Normal View History

import test_import.(
2020-07-17 22:59:18 +03:00
Point,
foo
);
2020-07-30 23:01:04 +03:00
function main() {
let a = Point { x: 1u32, y: 0u32 };
assert_eq!(a.x, 1u32);
}