2021-10-17 00:42:22 -05:00
|
|
|
error[E0308]: mismatched types
|
|
|
|
--> $DIR/let-else-binding-explicit-mut-annotated.rs:9:37
|
|
|
|
|
|
|
|
|
LL | let Some(n): &mut Option<i32> = &&Some(5i32) else { return };
|
2022-06-02 09:39:47 -05:00
|
|
|
| ---------------- ^^^^^^^^^^^^ types differ in mutability
|
|
|
|
| |
|
|
|
|
| expected due to this
|
2021-10-17 00:42:22 -05:00
|
|
|
|
|
|
|
|
= note: expected mutable reference `&mut Option<i32>`
|
|
|
|
found reference `&&Option<i32>`
|
|
|
|
|
|
|
|
error[E0308]: mismatched types
|
|
|
|
--> $DIR/let-else-binding-explicit-mut-annotated.rs:13:37
|
|
|
|
|
|
|
|
|
LL | let Some(n): &mut Option<i32> = &&mut Some(5i32) else { return };
|
2022-06-02 09:39:47 -05:00
|
|
|
| ---------------- ^^^^^^^^^^^^^^^^ types differ in mutability
|
|
|
|
| |
|
|
|
|
| expected due to this
|
2021-10-17 00:42:22 -05:00
|
|
|
|
|
|
|
|
= note: expected mutable reference `&mut Option<i32>`
|
|
|
|
found reference `&&mut Option<i32>`
|
|
|
|
|
|
|
|
error: aborting due to 2 previous errors
|
|
|
|
|
|
|
|
For more information about this error, try `rustc --explain E0308`.
|