vxx2 / vlib / v / checker / tests / map_with_result_value_err.vv
9 lines · 7 sloc · 111 bytes · 0c8ce3bcb9fd4a2e5bd5f991a5a07da976d780d7
Raw
1struct Foo {
2 map1 map[string]!string
3}
4
5fn main() {
6 _ := map[string]!string{}
7
8 dump(map[string]!string{})
9}
10