vxx2 / vlib / v / checker / tests / inc_num_literal.out
4 lines · 4 sloc · 175 bytes · 91799a17425ecfd6a0542377a44989035784530f
Raw
1vlib/v/checker/tests/inc_num_literal.vv:1:1: error: cannot increment `100` because it is non lvalue expression
2 1 | 100++
3 | ~~~
4Details: try rewrite this as `100 + 1`