leo/tests/pass/parse/boolean/not_mutable.leo
2021-03-03 09:59:24 -08:00

4 lines
59 B
Plaintext

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