v/vlib/v/checker/tests/const_field_dec_err.out

7 lines
152 B
Plaintext

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