vxx2 / vlib / v / checker / tests / struct_field_name_err.vv
8 lines · 7 sloc · 97 bytes · 317acfda9784b6fd92f282136cfc17ebd3b883b3
Raw
1struct Release {
2 Foo string
3 Bar &int
4 Architecture []string
5}
6
7fn main() {
8}
9