vxx2 / vlib / v / checker / tests / comptime_selector_map_copy_err.out
7 lines · 7 sloc · 381 bytes · 777460dfd3f7cf551cb57ac9a6f29831aa85f164
Raw
1vlib/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