You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Clippy emits:
warning: you seem to be trying to use `match` for destructuring a
single pattern. Consider using `if let`
The code in question is functionally asserting that the `witness`
argument does not contain variant `Threshold`, the same can be achieved
using an `if let` and a `panic`.
0 commit comments