blob: 66ae90034e7f53c8db47736bd2cc74221eb92c45 [file] [log] [blame]
struct BarStruct;
impl<'a> BarStruct {
fn foo(&'a mut self) -> Box<BarStruct> { self }
//~^ ERROR mismatched types
//~| expected type `std::boxed::Box<BarStruct>`
//~| found type `&'a mut BarStruct`
}
fn main() {}