mirror of
https://github.com/AleoHQ/leo.git
synced 2024-12-20 16:11:35 +03:00
18 lines
223 B
Plaintext
18 lines
223 B
Plaintext
/*
|
|
namespace: Compile
|
|
expectation: Pass
|
|
inputs:
|
|
- dummy.in: |
|
|
[main]
|
|
y: bool = true;
|
|
|
|
[registers]
|
|
r0: bool = false;
|
|
*/
|
|
|
|
function main(y: bool) -> bool {
|
|
const a = 0i64;
|
|
|
|
return (-a == 0i64) == y;
|
|
}
|