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

4 lines
58 B
Plaintext

function main() {
let a = -32768i16;
let b = -a;
}