vxx2 / vlib / v / checker / tests / invalid_mut.vv
10 lines · 10 sloc · 105 bytes · 92cafd88510cc6a0908fab43d58837acca68773f
Raw
1fn main() {
2 mut x := 0
3 if mut x == 0 {
4 println(true)
5 }
6 if 0 == mut x {
7 println(true)
8 }
9 _ = x
10}
11