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

4 lines
55 B
Plaintext

function main() {
let a = -128i8;
let b = -a;
}