blob: 2236d78ef4b128786ff011eb9f4268b6640181af [file] [log] [blame]
struct Ref<'a, T: 'a> {
data: &'a T
}
fn foo<'a, 'b, 'c>(x: &'a mut Vec<Ref<'b, i32>>, y: Ref<'c, i32>) {
let z = Ref { data: y.data };
x.push(z);
//~^ ERROR lifetime may not live long enough
}
fn main() { }