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