mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-25 00:03:43 +00:00
11 lines
150 B
Rust
11 lines
150 B
Rust
struct Ref<'a> {
|
|
x: &'a u32,
|
|
}
|
|
|
|
fn foo(mut x: Vec<Ref>, y: Ref) {
|
|
x.push(y);
|
|
//~^ ERROR lifetime may not live long enough
|
|
}
|
|
|
|
fn main() {}
|