error: by-reference loop capture 'm' has type '*Move', but 'Move' is expected here
  --> /Users/agra/projects/sx/examples/215-ref-capture-value-arg-diagnostic.sx:15:14
   |
15 |         take(m);
   |              ^

help: dereference it to pass the value: `m.*`
   |
15 | m.*
   |              ^
