mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-01 23:12:02 +00:00
62ba3e70a1
The previous output was unintuitive to users.
20 lines
629 B
Plaintext
20 lines
629 B
Plaintext
error[E0308]: mismatched types
|
|
--> $DIR/let-else-deref-coercion.rs:37:13
|
|
|
|
|
LL | let Bar::Present(z) = self else {
|
|
| ^^^^^^^^^^^^^^^ ---- this expression has type `&mut Foo`
|
|
| |
|
|
| expected `Foo`, found `Bar`
|
|
|
|
error[E0308]: mismatched types
|
|
--> $DIR/let-else-deref-coercion.rs:68:13
|
|
|
|
|
LL | let Bar(z) = x;
|
|
| ^^^^^^ - this expression has type `&mut irrefutable::Foo`
|
|
| |
|
|
| expected `Foo`, found `Bar`
|
|
|
|
error: aborting due to 2 previous errors
|
|
|
|
For more information about this error, try `rustc --explain E0308`.
|