leo/tests/compiler/integers/u64/eq.leo

26 lines
362 B
Plaintext
Raw Normal View History

2021-05-10 21:11:31 +03:00
/*
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 {
2021-07-01 23:40:29 +03:00
return (a == b) == c;
2021-05-10 21:11:31 +03:00
}