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
```
error: a never pattern is always unreachable
--> $DIR/pattern-behind-macro.rs:13:21
|
LL | never!() => {}
| ^^ this will never be executed
|
help: remove the match arm expression
|
LL - never!() => {}
LL + never!(),
|
```
Look up the macro backtrace call sites to see if we find where the macro was used as a pattern, to properly suggest removing match arm guard and body.
0 commit comments