leo/tests/pass/parse/mutability/let_mut_nested.leo

5 lines
75 B
Plaintext
Raw Normal View History

2021-03-03 20:59:24 +03:00
function main () {
let x = 2u8;
let y = x;
const z = y / 2u8;
2021-03-03 20:59:24 +03:00
}