aboutsummaryrefslogtreecommitdiff
path: root/v_windows/v/vlib/v/checker/tests/const_field_add_err.vv
blob: 24a6bb5e9b38088a298bb9c0ac5a3e812bf24cfc (plain)
1
2
3
4
5
6
7
const (
	a = 1
)

fn main() {
	a += 1
}