summaryrefslogtreecommitdiffstats
path: root/tests/ui/pattern/issue-94866.stderr
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--tests/ui/pattern/issue-94866.stderr4
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/ui/pattern/issue-94866.stderr b/tests/ui/pattern/issue-94866.stderr
index b3c17ce89..dee4b3f55 100644
--- a/tests/ui/pattern/issue-94866.stderr
+++ b/tests/ui/pattern/issue-94866.stderr
@@ -5,10 +5,10 @@ LL | match Enum::A {
| ^^^^^^^ pattern `Enum::B` not covered
|
note: `Enum` defined here
- --> $DIR/issue-94866.rs:7:16
+ --> $DIR/issue-94866.rs:7:6
|
LL | enum Enum { A, B }
- | ---- ^ not covered
+ | ^^^^ - not covered
= note: the matched value is of type `Enum`
help: ensure that all possible cases are being handled by adding a match arm with a wildcard pattern or an explicit pattern as shown
|