leo/compiler/otests/boolean/not_mutable.leo
2021-04-19 18:08:14 -07:00

4 lines
57 B
Plaintext

function main () {
let b = false;
const a = !b;
}