v/vlib/v/parser/tests/struct_embed_duplicate.vv

10 lines
63 B
V

struct Abc {
foo int = 5
}
struct Xyz {
Abc
Abc
bar int
}