Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.
struct BarStruct;
impl<'a> BarStruct {
fn foo(&'a mut self) -> Box<BarStruct> { self }
//~^ ERROR mismatched types
//~| expected struct `Box<BarStruct>`
//~| found mutable reference `&'a mut BarStruct`
}
fn main() {}