11 lines
166 B
Rust
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() {}
|