aboutsummaryrefslogtreecommitdiff
path: root/v_windows/v/old/vlib/v/checker/tests/const_field_sub_err.out
blob: 782520b8eced7e5cc52b1972b20a805a9cf19964 (plain)
1
2
3
4
5
6
vlib/v/checker/tests/const_field_sub_err.vv:6:2: error: cannot modify constant `a`
    4 | 
    5 | fn main() {
    6 |     a -= 1
      |     ^
    7 | }