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

3 lines
56 B
Plaintext

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