v2 / vlib / v / parser / tests / struct_field_expected.out
7 lines · 7 sloc · 195 bytes · 800c0e509271260aaa01ef9facd6f6b249845179
Raw
1vlib/v/parser/tests/struct_field_expected.vv:6:4: error: invalid expression: unexpected token `:`
2 4 |
3 5 | x = Bar{
4 6 | .a: 'Alpha'
5 | ^
6 7 | .b: 'Beta'
7 8 | }