v2 / vlib / v / fmt / tests / struct_decl_with_nested_struct_keep.vv
7 lines · 6 sloc · 73 bytes · 29511bcc49ae33c375bacae69887e125232a0bd3
Raw
1pub struct Node {
2 parent ?Node
3}
4
5pub struct NodeWrapper {
6 node Node
7}
8