leo/tests/compiler/integers/i32/negate_zero.leo

18 lines
228 B
Plaintext
Raw Normal View History

2021-05-10 20:19:19 +03:00
/*
namespace: Compile
expectation: Pass
inputs:
- dummy.in: |
[main]
y: bool = true;
[registers]
r0: bool = false;
*/
function main(y: bool) -> bool {
const a: i32 = 0i32;
2020-08-05 07:37:09 +03:00
2021-07-01 23:40:29 +03:00
return (-a == 0i32) == y;
2021-05-10 20:19:19 +03:00
}