v/vlib/v/parser/tests/unnecessary_mut.vv

8 lines
69 B
V

fn main() {
mut x := 0
if mut x == 0 {
println(true)
}
_ = x
}