leo/tests/compiler/integers/i128/eq.leo
2021-07-01 13:40:29 -07:00

18 lines
248 B
Plaintext

/*
namespace: Compile
expectation: Pass
inputs:
- i128.in: |
[main]
a: i128 = 2;
b: i128 = 2;
c: bool = true;
[registers]
r0: bool = true;
*/
function main(a: i128, b: i128, c: bool) -> bool {
return (a == b) == c;
}