blob: ef61eac7baa82802644c5e03cc7dacf5eebbea0e (
plain)
1
2
3
4
5
6
7
8
9
10
|
struct BarStruct;
impl<'a> BarStruct {
fn foo(&'a mut self) -> Box<BarStruct> { self }
//~^ ERROR mismatched types
//~| expected struct `std::boxed::Box<BarStruct>`
//~| found mutable reference `&'a mut BarStruct`
}
fn main() {}
|