| 1 | vlib/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 | } |