v2 / vlib / v / tests / builtin_maps / map_value_init_test.v
9 lines · 8 sloc · 132 bytes · 6488041a749df9762348d019c4223908c476f2e2
Raw
1struct Test {
2 s string
3}
4
5fn test_map_value_init() {
6 m := map[string]Test{}
7 empty := m['not-here']
8 assert !isnil(empty.s.str)
9}
10