Gitly
English
Русский
Español
日本語
中文
Português
Log in
Register
v2
/
vlib
/
v
/
parser
/
tests
/
map_init.out
6
lines
·
6
sloc
·
258 bytes
·
79b4b0e6c87c3caf9871322e9a9bedd5c2bba701
Raw
1
vlib/v/parser/tests/map_init.vv:3:22: error: `}` expected; explicit `map` initialization does not support parameters
2
1 | fn main() {
3
2 | a := map[string]int{}
4
3 | b := map[string]f64{cap: 10}
5
| ~~~
6
4 | }
7