leo/compiler/tests/integers/i128/negate.leo
2020-08-04 21:37:09 -07:00

3 lines
58 B
Plaintext

function main(a: i128, b: i128) {
assert_eq!(-a, b);
}