1
0
mirror of https://github.com/vlang/v.git synced 2023-08-10 21:13:21 +03:00
v/vlib/v/parser/tests/c_struct_no_embed.vv
Alexander Medvednikov 2c75b1397c all: struct embedding
2020-10-30 07:09:26 +01:00

7 lines
48 B
V

struct Foo {
x int
}
struct C.Unknown {
Foo
}