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

26 lines
362 B
Plaintext

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