leo/compiler/tests/statements/block.leo

9 lines
108 B
Plaintext
Raw Normal View History

2020-12-11 22:21:46 +03:00
function main() {
let mut x = 4u32;
{
x = 5u32;
}
console.assert(x == 5u32);
}