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