mirror of
https://github.com/ProvableHQ/leo.git
synced 2024-12-17 23:02:47 +03:00
13 lines
185 B
Plaintext
13 lines
185 B
Plaintext
/*
|
|
namespace: Compile
|
|
expectation: Pass
|
|
input_file: input/dummy.in
|
|
*/
|
|
|
|
function main(a: bool) -> bool {
|
|
let x = 2u8;
|
|
let y = x;
|
|
let z = y / 2u8;
|
|
return (z == 1) == a;
|
|
}
|