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_dec_expr_err.out

6 lines
180 B
Plaintext

vlib/v/parser/tests/prefix_dec_expr_err.vv:3:9: error: prefix `--v` is unsupported, use suffix form `v--`
1 | mut v := 4
2 | _ = v
3 | println(--v)
| ~~~