Gitly
English
Русский
Español
日本語
中文
Português
Log in
Register
v2
/
vlib
/
v
/
tests
/
builtin_maps
/
map_value_init_test.v
9
lines
·
8
sloc
·
132 bytes
·
6488041a749df9762348d019c4223908c476f2e2
Raw
1
struct
Test {
2
s string
3
}
4
5
fn
test_map_value_init() {
6
m := map[string]Test{}
7
empty := m[
'not-here'
]
8
assert !isnil(empty.s.str)
9
}
10