v2 / vlib / v / parser / tests / struct_embed_duplicate.vv
9 lines · 8 sloc · 63 bytes · 2c75b1397cbd8b940bdf357ebb74d59660c53f51
Raw
1struct Abc {
2 foo int = 5
3}
4
5struct Xyz {
6 Abc
7 Abc
8 bar int
9}
10