1
0
mirror of https://github.com/vlang/v.git synced 2023-08-10 21:13:21 +03:00
v/vlib/v/parser/tests/struct_embed_wrong_pos_long_err.out

7 lines
250 B
Plaintext

vlib/v/parser/tests/struct_embed_wrong_pos_long_err.vv:4:2: error: struct embedding must be declared at the beginning of the struct body
2 | struct Foo2 {
3 | mut:
4 | cli.Command
| ~~~~~~~~~~~
5 | }
6 | fn main() {}