vxx2 / vlib / v / checker / tests / trailing_comma_struct_attr.out
6 lines · 6 sloc · 239 bytes
Raw
1vlib/v/checker/tests/trailing_comma_struct_attr.vv:3:32: error: unexpected token `]`, expecting name
2 1 | struct User {
3 2 | name string
4 3 | jobs []string @[json:jobss;]
5 | ^
6 4 | }
7