v/vlib/v/checker/tests/array_init_with_void_value_...

9 lines
64 B
V

module main
fn main() {
a := [yo()]
println(a)
}
fn yo() {}