Open W95Psp opened 3 months ago
This issue has been marked as stale due to a lack of activity for 60 days. If you believe this issue is still relevant, please provide an update or comment to keep it open. Otherwise, it will be closed in 7 days.
Still relevant
Some backends (e.g. F*) don't support as patterns, and reject them. For instance:
We should have a phase that rewrites such matches. With the new phase @maximebuyse added that rewrites
if let
-guards, this comes for almost free: we could for instance rewritebinder @ Some(x)
asbinder if let Some(x) = binder
.