Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.
fn foo(&mut (ref mut v, w): &mut (&u8, &u8), x: &u8) {
*v = x;
//~^ ERROR lifetime may not live long enough
}
fn main() { }