| 1 | vlib/v/checker/tests/struct_field_name_err.vv:2:2: error: field name `Foo` cannot contain uppercase letters, use snake_case instead |
| 2 | 1 | struct Release { |
| 3 | 2 | Foo string |
| 4 | | ~~~~~~~~~~~~~~~~~~~ |
| 5 | 3 | Bar &int |
| 6 | 4 | Architecture []string |
| 7 | vlib/v/checker/tests/struct_field_name_err.vv:3:2: error: field name `Bar` cannot contain uppercase letters, use snake_case instead |
| 8 | 1 | struct Release { |
| 9 | 2 | Foo string |
| 10 | 3 | Bar &int |
| 11 | | ~~~~~~~~~~~~~~~~~ |
| 12 | 4 | Architecture []string |
| 13 | 5 | } |
| 14 | vlib/v/checker/tests/struct_field_name_err.vv:4:2: error: field name `Architecture` cannot contain uppercase letters, use snake_case instead |
| 15 | 2 | Foo string |
| 16 | 3 | Bar &int |
| 17 | 4 | Architecture []string |
| 18 | | ~~~~~~~~~~~~~~~~~~~~~ |
| 19 | 5 | } |
| 20 | 6 | |
| 21 | |