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

4 lines
63 B
Plaintext

function main() {
let a = -2147483648i32;
let b = -a;
}