leo/asg/tests/pass/boolean/not_mutable.leo
2021-01-25 07:19:38 -08:00

4 lines
59 B
Plaintext

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