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_short_err.out

7 lines
235 B
Plaintext

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