2017-08-06 04:09:43 +05:30
|
|
|
struct Ref<'a> {
|
|
|
|
x: &'a u32,
|
|
|
|
}
|
2017-06-29 12:40:04 -07:00
|
|
|
|
2017-08-06 04:09:43 +05:30
|
|
|
fn foo(mut x: Vec<Ref>, y: Ref) {
|
2022-05-22 02:05:15 -04:00
|
|
|
x.push(y);
|
2022-04-01 13:13:25 -04:00
|
|
|
//~^ ERROR lifetime may not live long enough
|
2017-06-29 12:40:04 -07:00
|
|
|
}
|
2017-08-06 04:09:43 +05:30
|
|
|
|
|
|
|
fn main() {}
|