Gitly
English
Русский
Español
日本語
中文
Português
Pricing
Log in
Register
v2
/
vlib
/
v
/
checker
/
tests
/
struct_ref_field_const_default_err.vv
12
lines
·
10
sloc
·
112 bytes
·
e16ee9d4d8b9aadd1eb5c4f5550291c82ddfc19f
Raw
1
struct Tag {
2
name string
3
}
4
5
const null_tag = Tag{}
6
7
struct Thing {
8
pub:
9
a int
10
pub mut:
11
tag &Tag = null_tag
12
}
13