v2 / vlib / v / parser / tests / struct_missing_mut_section_colon_err.vv
8 lines · 6 sloc · 61 bytes · b24377d3b804fcff672958be094c64d43aba3484
Raw
1struct Foo {
2}
3
4struct Bar {
5 mut foos []Foo
6}
7
8fn main() {}
9