v/vlib/v/checker/tests/unknown_field.v

9 lines
72 B
V

module main
struct Test {}
fn main() {
t := Test{}
println(t.sdd)
}