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