v/vlib/v/checker/tests/immutable_array_var.vv

5 lines
35 B
V
Raw Normal View History

fn main() {
a := [1, 2]
a << 3
}