v2 / vlib / v / parser / tests / embedded_struct_attribute_err.out
7 lines · 7 sloc · 233 bytes · 396d46d9ca41a37b8654d17d9f5ab5e2f70c8171
Raw
1vlib/v/parser/tests/embedded_struct_attribute_err.vv:8:7: error: cannot use attributes on embedded structs
2 6 |
3 7 | struct Button {
4 8 | Size [json: size] // fmt removes [json: size]
5 | ^
6 9 | }
7 10 |