blob: 96500ddb9ccaf76c70b378e1d5a739e15b0a11af (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
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)`
= note: `&str` cannot be matched exhaustively, so a wildcard `_` is necessary
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!()
|
error: aborting due to 1 previous error
For more information about this error, try `rustc --explain E0004`.
|