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

18 lines
246 B
Plaintext

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