leo/compiler/tests/boolean/not_mutable.leo

4 lines
57 B
Plaintext

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