v/vlib/v/checker/tests/array_declare_element_c.vv

5 lines
55 B
V

fn main() {
arr := [[1, 2], [0, 3]]
arr[1][0] := 1
}