Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.
fn bar<'a>() -> &'a mut u32 {
&mut 4
//~^ ERROR cannot return reference to temporary value [E0515]
}
fn main() { }