leo/asg/tests/pass/import/multiple.leo

10 lines
137 B
Plaintext
Raw Normal View History

2021-01-25 18:17:42 +03:00
import test-import.(
Point,
foo
);
function main() {
let a = Point { x: 1u32, y: 0u32 };
console.assert(a.x == 1u32);
}