v2 / vlib / v / checker / tests / struct_ref_field_no_ptr_err.vv
7 lines · 6 sloc · 60 bytes · ac136c08e64d7e58fa5b7324cda93dd1380c8f3a
Raw
1struct Foo {
2 bar &Bar = Bar{}
3}
4
5struct Bar {
6 field int
7}
8