rust/src/test/ui/issues/issue-7061.stderr
2018-12-25 21:08:33 -07:00

15 lines
578 B
Plaintext

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