mirror of
https://github.com/sigp/lighthouse.git
synced 2026-05-31 05:07:12 +00:00
`if let` guards are nightly-only (rust-lang/rust#51114), causing `error[E0658]` and a CI `check-code` failure. Replace with the stable `if matches!(...)` form suggested by rustc.