v2 / vlib / v / tests / field_publicity / embed.v
10 lines · 8 sloc · 94 bytes · e4edc5925a526c1a1779e102911d1f3115005889
Raw
1module field_publicity
2
3pub struct Context {
4pub:
5 name string
6}
7
8pub struct App {
9 Context
10}
11