v2 / vlib / v / checker / tests / struct_ref_field_const_default_err.vv
12 lines · 10 sloc · 112 bytes · e16ee9d4d8b9aadd1eb5c4f5550291c82ddfc19f
Raw
1struct Tag {
2 name string
3}
4
5const null_tag = Tag{}
6
7struct Thing {
8pub:
9 a int
10pub mut:
11 tag &Tag = null_tag
12}
13