v/vlib/v/checker/tests/struct_unknown_field.vv

12 lines
88 B
V

struct Test {
foo bool
}
fn main() {
t := Test{
foo: true
bar: false
}
_ = t
}