Skip to content

Commit 7a7d683

Browse files
committed
Re-bless tests
1 parent f5e39b9 commit 7a7d683

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

‎tests/ui/closures/malformed-pattern-issue-140011.stderr‎

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
error[E0412]: cannot find type `D` in this scope
1+
error[E0425]: cannot find type `D` in this scope
22
--> $DIR/malformed-pattern-issue-140011.rs:3:7
33
|
44
LL | C(D),
@@ -25,12 +25,12 @@ LL | enum B {
2525
LL | C(D),
2626
| - not covered
2727
= note: the matched value is of type `B`
28-
help: you might want to use `let else` to handle the variant that isn't matched
28+
help: you might want to use `let...else` to handle the variant that isn't matched
2929
|
3030
LL | let B::E(a) = h else { todo!() };
3131
| ++++++++++++++++
3232

3333
error: aborting due to 2 previous errors
3434

35-
Some errors have detailed explanations: E0005, E0412.
35+
Some errors have detailed explanations: E0005, E0425.
3636
For more information about an error, try `rustc --explain E0005`.

0 commit comments

Comments
 (0)