leo/tests/compiler/integers/i128/ge.leo
2021-05-10 20:19:19 +03:00

26 lines
375 B
Plaintext

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