v/vlib/v/checker/tests/short_struct_too_many.vv

9 lines
72 B
V

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