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

6 lines
204 B
Plaintext

vlib/v/parser/tests/prefix_inc_err.vv:3:1: error: prefix `--mp['a']` is unsupported, use suffix form `mp['a']--`
1 | mut mp := map[string]int{}
2 | mp["a"] = 1
3 | --mp["a"]
| ~~~~~~~~~