leo/compiler/tests/boolean/not_mutable.leo

4 lines
59 B
Plaintext

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