summaryrefslogtreecommitdiffstats
path: root/tests/ui/rfc-2294-if-let-guard/typeck.stderr
diff options
context:
space:
mode:
Diffstat (limited to 'tests/ui/rfc-2294-if-let-guard/typeck.stderr')
-rw-r--r--tests/ui/rfc-2294-if-let-guard/typeck.stderr4
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/ui/rfc-2294-if-let-guard/typeck.stderr b/tests/ui/rfc-2294-if-let-guard/typeck.stderr
index dd1f4826f..4ce97a68a 100644
--- a/tests/ui/rfc-2294-if-let-guard/typeck.stderr
+++ b/tests/ui/rfc-2294-if-let-guard/typeck.stderr
@@ -4,7 +4,7 @@ error[E0308]: mismatched types
LL | Ok(x) if let Err(_) = x => {},
| ^^^^^^ - this expression has type `Option<bool>`
| |
- | expected enum `Option`, found enum `Result`
+ | expected `Option<bool>`, found `Result<_, _>`
|
= note: expected enum `Option<bool>`
found enum `Result<_, _>`
@@ -15,7 +15,7 @@ error[E0308]: mismatched types
LL | Ok(x) if let 0 = x => {},
| ^ - this expression has type `Option<bool>`
| |
- | expected enum `Option`, found integer
+ | expected `Option<bool>`, found integer
|
= note: expected enum `Option<bool>`
found type `{integer}`