Skip to content

Commit

Permalink
Update ui test suite to nightly-2023-04-07
Browse files Browse the repository at this point in the history
  • Loading branch information
dtolnay committed Apr 7, 2023
1 parent 81da703 commit 333bfe7
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/ui/pattern-match.stderr
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ note: `MyPhantom<u8>` defined here
= note: this error originates in the attribute macro `phantom` (in Nightly builds, run with -Z macro-backtrace for more info)
help: ensure that all possible cases are being handled by adding a match arm with a wildcard pattern or an explicit pattern as shown
|
10~ MyPhantom => {}
10~ MyPhantom => {},
11+ MyPhantom::__Phantom(_) => todo!()
|

Expand All @@ -36,6 +36,6 @@ note: `MyPhantom<u8>` defined here
= note: this error originates in the attribute macro `phantom` (in Nightly builds, run with -Z macro-backtrace for more info)
help: ensure that all possible cases are being handled by adding a match arm with a wildcard pattern or an explicit pattern as shown
|
14 ~ MyPhantom::<u8> => {}
14 ~ MyPhantom::<u8> => {},
15 + MyPhantom::__Phantom(_) => todo!()
|

0 comments on commit 333bfe7

Please sign in to comment.