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