v/vlib/v/checker/tests/struct_field_name_duplicate...

6 lines
183 B
Plaintext
Raw Normal View History

vlib/v/checker/tests/struct_field_name_duplicate_err.vv:3:2: error: field name `a` duplicate
2020-05-27 18:12:34 +02:00
1 | struct Aaa {
2 | a int
3 | a string
2020-05-16 16:12:23 +02:00
| ~~~~~~~~
4 | }