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