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: Ref) {
x.b = y.b; //~ ERROR lifetime mismatch
fn main() {}