Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.
struct Ref<'a, 'b> { a: &'a u32, b: &'b u32 }
fn foo(mut x: Ref, y: &u32) {
y = x.b; //~ ERROR lifetime mismatch
}
fn main() { }