summaryrefslogtreecommitdiffstats
path: root/tests/ui/pattern/usefulness/issue-39362.stderr
diff options
context:
space:
mode:
Diffstat (limited to 'tests/ui/pattern/usefulness/issue-39362.stderr')
-rw-r--r--tests/ui/pattern/usefulness/issue-39362.stderr6
1 files changed, 3 insertions, 3 deletions
diff --git a/tests/ui/pattern/usefulness/issue-39362.stderr b/tests/ui/pattern/usefulness/issue-39362.stderr
index b8b17918a..8dc534916 100644
--- a/tests/ui/pattern/usefulness/issue-39362.stderr
+++ b/tests/ui/pattern/usefulness/issue-39362.stderr
@@ -5,12 +5,12 @@ LL | match f {
| ^ patterns `Foo::Bar { bar: Bar::C, .. }`, `Foo::Bar { bar: Bar::D, .. }`, `Foo::Bar { bar: Bar::E, .. }` and 1 more not covered
|
note: `Foo` defined here
- --> $DIR/issue-39362.rs:2:5
+ --> $DIR/issue-39362.rs:1:6
|
LL | enum Foo {
- | ---
+ | ^^^
LL | Bar { bar: Bar, id: usize }
- | ^^^ not covered
+ | --- not covered
= note: the matched value is of type `Foo`
help: ensure that all possible cases are being handled by adding a match arm with a wildcard pattern as shown, or multiple match arms
|