leo/tests/compiler/integers/i128/min.leo
2022-07-28 16:23:16 -07:00

11 lines
235 B
Plaintext

/*
namespace: Compile
expectation: Pass
input_file: inputs/add.in
*/
function main(a: i128) -> i128 {
let b: i128 = -170141183460469231731687303715884105727i128;
return b - a; // -170141183460469231731687303715884105728i128
}