| 1 | vlib/v/checker/tests/comptime_selector_map_copy_err.vv:8:18: error: cannot copy map: call `move` or `clone` method (or use a reference) |
| 2 | 6 | $for field in T.fields { |
| 3 | 7 | $if field.unaliased_typ is map[string]string { |
| 4 | 8 | values := val.$(field.name) |
| 5 | | ~~~~~~~~~~~~~ |
| 6 | 9 | _ = values |
| 7 | 10 | } |
| 8 |