leo/compiler/tests/boolean/conditional_mut.leo

6 lines
78 B
Plaintext

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