v/vlib/v/checker/tests/unknown_array_element_type_...

10 lines
64 B
V

struct Aaa {
a []abc
}
fn main() {
s := Aaa{}
println(s)
}