Gitly
English
Русский
Español
日本語
中文
Português
Pricing
Log in
Register
vxx2
/
vlib
/
v
/
checker
/
tests
/
inc_paren_expr.out
4
lines
·
4
sloc
·
202 bytes
·
91799a17425ecfd6a0542377a44989035784530f
Raw
1
vlib/v/checker/tests/inc_paren_expr.vv:1:1: error: cannot increment `(100 * 10)` because it is non lvalue expression
2
1 | (100 * 10)++
3
| ~~~~~~~~~~
4
Details: try rewrite this as `(100 * 10) + 1`