mirror of
https://github.com/AleoHQ/leo.git
synced 2024-12-21 00:21:47 +03:00
12 lines
226 B
Plaintext
12 lines
226 B
Plaintext
/*
|
|
namespace: Compile
|
|
expectation: Pass
|
|
input_file: ../inputs/dummy.in
|
|
*/
|
|
|
|
function main(y: bool) -> bool{
|
|
const a: i128 = -170141183460469231731687303715884105728i128;
|
|
const b: i128 = -a;
|
|
return (b == -a) == y;
|
|
}
|