summaryrefslogtreecommitdiffstats
path: root/tests/ui/lifetimes/issue-17728.stderr
diff options
context:
space:
mode:
Diffstat (limited to 'tests/ui/lifetimes/issue-17728.stderr')
-rw-r--r--tests/ui/lifetimes/issue-17728.stderr2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/ui/lifetimes/issue-17728.stderr b/tests/ui/lifetimes/issue-17728.stderr
index 3b25902d7..535073d6e 100644
--- a/tests/ui/lifetimes/issue-17728.stderr
+++ b/tests/ui/lifetimes/issue-17728.stderr
@@ -9,7 +9,7 @@ LL | | "n" | "north" => RoomDirection::North,
LL | | "down" => RoomDirection::Down,
| | ------------------- this and all prior arms are found to be of type `RoomDirection`
LL | | _ => None
- | | ^^^^ expected enum `RoomDirection`, found enum `Option`
+ | | ^^^^ expected `RoomDirection`, found `Option<_>`
LL | | }
| |_____- `match` arms have incompatible types
|