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

3 lines
56 B
Plaintext

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