leo/tests/compiler/mutability/cond_mut.leo

7 lines
97 B
Plaintext
Raw Normal View History

2021-03-24 01:49:56 +03:00
function main () {
2021-03-25 18:19:42 +03:00
let x = 100i8;
2021-03-24 01:49:56 +03:00
if false {
x = 1i8;
x *= 100i8;
}
}