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[E0004]: non-exhaustive patterns: type &Never is non-empty
--> src/main.rs:5:11
|
5 | match &n {
| ^^
|
help: Please ensure that all possible cases are being handled; possibly adding wildcards or more match arms.
--> src/main.rs:5:11
|
5 | match &n {
| ^^
Rust 1.27.
I'm not 100% sure, but I guess this code should be valid, because following is valid:
enum Never {
}
fn foo(n: Never) {
match n {
};
}
The text was updated successfully, but these errors were encountered:
result is
Rust 1.27.
I'm not 100% sure, but I guess this code should be valid, because following is valid:
The text was updated successfully, but these errors were encountered: