summaryrefslogtreecommitdiffstats
path: root/tests/ui/pattern/usefulness/doc-hidden-non-exhaustive.stderr
diff options
context:
space:
mode:
Diffstat (limited to 'tests/ui/pattern/usefulness/doc-hidden-non-exhaustive.stderr')
-rw-r--r--tests/ui/pattern/usefulness/doc-hidden-non-exhaustive.stderr10
1 files changed, 5 insertions, 5 deletions
diff --git a/tests/ui/pattern/usefulness/doc-hidden-non-exhaustive.stderr b/tests/ui/pattern/usefulness/doc-hidden-non-exhaustive.stderr
index 17e1a2304..ff29de03d 100644
--- a/tests/ui/pattern/usefulness/doc-hidden-non-exhaustive.stderr
+++ b/tests/ui/pattern/usefulness/doc-hidden-non-exhaustive.stderr
@@ -12,7 +12,7 @@ LL | pub enum HiddenEnum {
= note: the matched value is of type `HiddenEnum`
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 ~ HiddenEnum::B => {}
+LL ~ HiddenEnum::B => {},
LL + _ => todo!()
|
@@ -33,7 +33,7 @@ LL | B,
= note: the matched value is of type `HiddenEnum`
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 ~ HiddenEnum::C => {}
+LL ~ HiddenEnum::C => {},
LL + HiddenEnum::B => todo!()
|
@@ -54,7 +54,7 @@ LL | B,
= note: the matched value is of type `HiddenEnum`
help: ensure that all possible cases are being handled by adding a match arm with a wildcard pattern, a match arm with multiple or-patterns as shown, or multiple match arms
|
-LL ~ HiddenEnum::A => {}
+LL ~ HiddenEnum::A => {},
LL + HiddenEnum::B | _ => todo!()
|
@@ -72,7 +72,7 @@ note: `Option<HiddenEnum>` defined here
= note: the matched value is of type `Option<HiddenEnum>`
help: ensure that all possible cases are being handled by adding a match arm with a wildcard pattern, a match arm with multiple or-patterns as shown, or multiple match arms
|
-LL ~ Some(HiddenEnum::A) => {}
+LL ~ Some(HiddenEnum::A) => {},
LL + Some(HiddenEnum::B) | Some(_) => todo!()
|
@@ -93,7 +93,7 @@ LL | C,
= note: the matched value is of type `InCrate`
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 ~ InCrate::B => {}
+LL ~ InCrate::B => {},
LL + InCrate::C => todo!()
|