v/vlib/v/checker/tests/array_literal_modify_err.vv

5 lines
57 B
V

fn main() {
mut nums := [1, 2, 3] << 4
println(nums)
}