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

4 lines
95 B
Plaintext

function main() {
let a: i128 = -170141183460469231731687303715884105728;
let b = -a;
}