v/vlib/v/checker/tests/const_field_inc_err.out

7 lines
153 B
Plaintext

vlib/v/checker/tests/const_field_inc_err.vv:6:2: error: cannot modify constant `a`
4 |
5 | fn main() {
6 | a++
| ^
7 | }