v2 / vlib / v / checker / tests / comptime_assign_missing_mut_err.out
7 lines · 7 sloc · 325 bytes · c06fd556e8f01f65eeda1d499620eca3a3be5df4
Raw
1vlib/v/checker/tests/comptime_assign_missing_mut_err.vv:13:4: error: `res` is immutable, declare it with `mut` to make it mutable
2 11 | val := doc.value(field.name)
3 12 | $if field.typ is string {
4 13 | res.$(field.name) = val.string()
5 | ~~~
6 14 | }
7 15 | }