v/vlib/v/checker/tests/struct_field_with_any_type_...

9 lines
71 B
V

struct My_type {
fld any
}
fn main() {
a := My_type{}
println(a)
}