v2 / vlib / v / parser / tests / c_struct_no_embed.vv
7 lines · 6 sloc · 52 bytes · 95509cf8fbd30e723da6d6aae9872475cdfef026
Raw
1struct Foo {
2 x int
3}
4
5pub struct C.Unknown {
6 Foo
7}