v/vlib/v/fmt/tests/struct_embed_keep.vv

13 lines
82 B
V

struct Foo {
x int
}
struct Test {}
struct Bar {
Foo
Test
y int
z string
}