v/vlib/v/checker/tests/const_field_sub_err.out

7 lines
155 B
Plaintext

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