leo/tests/compiler/integers/i32/ge.leo

26 lines
367 B
Plaintext
Raw Normal View History

2021-05-10 20:19:19 +03:00
/*
namespace: Compile
expectation: Pass
inputs:
- i32_e.in: |
[main]
a: i32 = 4;
b: i32 = 4;
c: bool = true;
[registers]
r0: bool = true;
- i32_g.in: |
[main]
a: i32 = 5;
b: i32 = 4;
c: bool = true;
[registers]
r0: bool = true;
*/
function main(a: i32, b: i32, c: bool) -> bool {
return a >= b == c;
}