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

18 lines
239 B
Plaintext

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