mirror of
https://github.com/ProvableHQ/leo.git
synced 2024-11-23 23:23:50 +03:00
13 lines
224 B
Plaintext
13 lines
224 B
Plaintext
// namespace: Compile
|
|
// expectation: Pass
|
|
// input_file: input/dummy.in
|
|
// cwd: imports
|
|
|
|
import test-import.*;
|
|
|
|
function main(y: bool) -> bool {
|
|
const a = Point { x: 1u32, y: 0u32 };
|
|
|
|
return (foo() == 1u32) == y;
|
|
}
|