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

4 lines
74 B
Plaintext

function main() {
let a: i64 = -9223372036854775808;
let b = -a;
}