vxx2 / vlib / v / checker / tests / nested_struct_with_required_attr_err.vv
16 lines · 13 sloc · 129 bytes · 0c8ce3bcb9fd4a2e5bd5f991a5a07da976d780d7
Raw
1struct Foo {
2 bar Bar
3}
4
5struct Bar {
6 egg Egg
7}
8
9struct Egg {
10 name string @[required]
11}
12
13fn main() {
14 f := Foo{}
15 println(f)
16}
17