summaryrefslogtreecommitdiffstats
path: root/tests/ui/pattern/usefulness/issue-105479-str-non-exhaustiveness.stderr
diff options
context:
space:
mode:
Diffstat (limited to 'tests/ui/pattern/usefulness/issue-105479-str-non-exhaustiveness.stderr')
-rw-r--r--tests/ui/pattern/usefulness/issue-105479-str-non-exhaustiveness.stderr17
1 files changed, 17 insertions, 0 deletions
diff --git a/tests/ui/pattern/usefulness/issue-105479-str-non-exhaustiveness.stderr b/tests/ui/pattern/usefulness/issue-105479-str-non-exhaustiveness.stderr
new file mode 100644
index 000000000..771fc320a
--- /dev/null
+++ b/tests/ui/pattern/usefulness/issue-105479-str-non-exhaustiveness.stderr
@@ -0,0 +1,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 previous error
+
+For more information about this error, try `rustc --explain E0004`.