]> git.lizzy.rs Git - rust.git/blob - tests/ui/let-else/let-else-deref-coercion.stderr
Don't resolve type var roots in point_at_expr_source_of_inferred_type
[rust.git] / tests / ui / let-else / let-else-deref-coercion.stderr
1 error[E0308]: mismatched types
2   --> $DIR/let-else-deref-coercion.rs:37:13
3    |
4 LL |         let Bar::Present(z) = self else {
5    |             ^^^^^^^^^^^^^^^   ---- this expression has type `&mut Foo`
6    |             |
7    |             expected struct `Foo`, found enum `Bar`
8
9 error[E0308]: mismatched types
10   --> $DIR/let-else-deref-coercion.rs:68:13
11    |
12 LL |         let Bar(z) = x;
13    |             ^^^^^^   - this expression has type `&mut irrefutable::Foo`
14    |             |
15    |             expected struct `Foo`, found struct `Bar`
16
17 error: aborting due to 2 previous errors
18
19 For more information about this error, try `rustc --explain E0308`.