% Pattern matching ### Dereference `match` targets when possible. [FIXME: needs RFC] Prefer ~~~~ignore match *foo { X(...) => ... Y(...) => ... } ~~~~ over ~~~~ignore match foo { box X(...) => ... box Y(...) => ... } ~~~~