mirror of
https://github.com/AleoHQ/leo.git
synced 2024-12-21 08:31:33 +03:00
18 lines
223 B
Plaintext
18 lines
223 B
Plaintext
/*
|
|
namespace: Compile
|
|
expectation: Pass
|
|
input_file: input/dummy.in
|
|
cwd: imports
|
|
*/
|
|
|
|
import test-import.(
|
|
Point,
|
|
foo
|
|
);
|
|
|
|
function main() -> bool {
|
|
const a = Point { x: 1u32, y: 0u32 };
|
|
|
|
return a.x == 1u32;
|
|
}
|