rust/tests/ui/issues/issue-7061.stderr

15 lines
567 B
Plaintext

error[E0308]: mismatched types
--> $DIR/issue-7061.rs:4:46
|
LL | fn foo(&'a mut self) -> Box<BarStruct> { self }
| -------------- ^^^^ expected `Box<BarStruct>`, found `&mut BarStruct`
| |
| expected `Box<BarStruct>` because of return type
|
= note: expected struct `Box<BarStruct>`
found mutable reference `&'a mut BarStruct`
error: aborting due to 1 previous error
For more information about this error, try `rustc --explain E0308`.