leo/tests/compiler/integers/i64/negate_zero.leo
2021-04-19 18:08:14 -07:00

5 lines
72 B
Plaintext

function main() {
const a = 0i64;
console.assert(-a == 0i64);
}