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_syntax_err.out
2022-03-11 12:15:52 +03:00

7 lines
208 B
Plaintext

vlib/v/parser/tests/map_syntax_err.vv:2:7: error: deprecated map syntax, use syntax like `{'age': 20}`
1 | fn main() {
2 | m := map{"aaa": 1}
| ~~~
3 | println(m)
4 | }