v/vlib/v/checker/tests/incorrect_name_struct_field...

5 lines
170 B
Plaintext
Raw Normal View History

vlib/v/checker/tests/incorrect_name_struct_field.vv:2:5: error: field name `_a` cannot start with `_`
2020-05-16 16:12:23 +02:00
1 | struct Abc {
2 | _a int
| ~~~~~~
3 | }