v2 / vlib / v / parser / tests / struct_embed_duplicate.out
7 lines · 7 sloc · 190 bytes · 2c75b1397cbd8b940bdf357ebb74d59660c53f51
Raw
1vlib/v/parser/tests/struct_embed_duplicate.vv:7:2: error: cannot embed `Abc` more than once
2 5 | struct Xyz {
3 6 | Abc
4 7 | Abc
5 | ~~~
6 8 | bar int
7 9 | }