vxx2 / vlib / v / checker / tests / immutable_var.vv
5 lines · 5 sloc · 36 bytes · c7a6d28e13e6a72ed1fe4b78d1f5c26f7d99990e
Raw
1fn main() {
2 a := 1
3 a = 2
4 _ = a
5}
6