v/vlib/v/checker/tests/immutable_var.vv

6 lines
36 B
V

fn main() {
a := 1
a = 2
_ = a
}