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

6 lines
80 B
Plaintext

function main () {
let mut x = true;
if x {
let y = 0u8;
}
}