2023-08-27 07:14:56 -05:00
|
|
|
error[E0004]: non-exhaustive patterns: `(&_, _)` not covered
|
|
|
|
--> $DIR/issue-105479-str-non-exhaustiveness.rs:4:11
|
|
|
|
|
|
|
|
|
LL | match (a, b) {
|
|
|
|
| ^^^^^^ pattern `(&_, _)` not covered
|
|
|
|
|
|
|
|
|
= note: the matched value is of type `(&str, &str)`
|
2023-09-03 06:55:11 -05:00
|
|
|
= note: `&str` cannot be matched exhaustively, so a wildcard `_` is necessary
|
2023-08-27 07:14:56 -05:00
|
|
|
help: ensure that all possible cases are being handled by adding a match arm with a wildcard pattern or an explicit pattern as shown
|
|
|
|
|
|
|
|
|
LL ~ ("c", "d") => {},
|
|
|
|
LL + (&_, _) => todo!()
|
|
|
|
|
|
|
|
|
|
2023-11-21 09:44:16 -06:00
|
|
|
error: aborting due to 1 previous error
|
2023-08-27 07:14:56 -05:00
|
|
|
|
|
|
|
For more information about this error, try `rustc --explain E0004`.
|