v/vlib/v/checker/tests/fixed_array_non_const_size_...

8 lines
65 B
V

fn main() {
size := 2
array := [size]int{}
println(array)
}