rust/tests/ui/lifetimes/lifetime-errors/ex3-both-anon-regions-both-...

11 lines
166 B
Rust

struct Ref<'a> {
x: &'a u32,
}
fn foo<'a, 'b>(mut x: Vec<Ref<'a>>, y: Ref<'b>) {
x.push(y);
//~^ ERROR lifetime may not live long enough
}
fn main() {}