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

6 lines
36 B
V
Raw Normal View History

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