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

26 lines
369 B
Plaintext

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