leo/tests/compiler/import/multiple.leo

10 lines
139 B
Plaintext
Raw Normal View History

2020-08-15 11:58:33 +03:00
import test-import.(
2020-07-17 22:59:18 +03:00
Point,
foo
);
2020-07-30 23:01:04 +03:00
function main() {
const a = Point { x: 1u32, y: 0u32 };
2020-07-30 23:01:04 +03:00
2020-08-17 05:14:26 +03:00
console.assert(a.x == 1u32);
}