v2 / vlib / v / parser / tests / map_init_void.out
5 lines · 5 sloc · 196 bytes · 4ed9d13803d93f88051aece69dc5613241dd87b3
Raw
1vlib/v/parser/tests/map_init_void.vv:2:18: error: map value type is missing: use `map[KeyType]ValueType`
2 1 | fn main() {
3 2 | m := map[string]{}
4 | ^
5 3 | }
6