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