Gitly
English
Русский
Español
日本語
中文
Português
Log in
Register
v2
/
vlib
/
v
/
fmt
/
tests
/
struct_decl_with_nested_struct_keep.vv
7
lines
·
6
sloc
·
73 bytes
·
29511bcc49ae33c375bacae69887e125232a0bd3
Raw
1
pub struct Node {
2
parent ?Node
3
}
4
5
pub struct NodeWrapper {
6
node Node
7
}
8