1
0
mirror of https://github.com/vlang/v.git synced 2023-08-10 21:13:21 +03:00
v/vlib/v/parser/tests/map_init_void.out

6 lines
171 B
Plaintext

vlib/v/parser/tests/map_init_void.vv:2:18: error: map value type cannot be void
1 | fn main() {
2 | m := map[string]{}
| ^
3 | }