diff --git a/tests/ui/pattern-match.stderr b/tests/ui/pattern-match.stderr index 532c7a2..290b10f 100644 --- a/tests/ui/pattern-match.stderr +++ b/tests/ui/pattern-match.stderr @@ -15,7 +15,7 @@ note: `MyPhantom` 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!() | @@ -36,6 +36,6 @@ note: `MyPhantom` 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:: => {} +14 ~ MyPhantom:: => {}, 15 + MyPhantom::__Phantom(_) => todo!() |