2019-01-27 11:03:21 +00:00
|
|
|
error: lifetime may not live long enough
|
2022-04-01 17:13:25 +00:00
|
|
|
--> $DIR/ex2c-push-inference-variable.rs:7:5
|
2019-01-27 11:03:21 +00:00
|
|
|
|
|
|
|
|
LL | fn foo<'a, 'b, 'c>(x: &'a mut Vec<Ref<'b, i32>>, y: Ref<'c, i32>) {
|
|
|
|
| -- -- lifetime `'c` defined here
|
|
|
|
| |
|
|
|
|
| lifetime `'b` defined here
|
|
|
|
LL | let z = Ref { data: y.data };
|
|
|
|
LL | x.push(z);
|
|
|
|
| ^^^^^^^^^ argument requires that `'c` must outlive `'b`
|
2019-10-27 14:39:14 +00:00
|
|
|
|
|
|
|
|
= help: consider adding the following bound: `'c: 'b`
|
2024-12-04 11:19:03 +00:00
|
|
|
= note: requirement occurs because of a mutable reference to `Vec<Ref<'_, i32>>`
|
|
|
|
= note: mutable references are invariant over their type parameter
|
|
|
|
= help: see <https://doc.rust-lang.org/nomicon/subtyping.html> for more information about variance
|
2019-01-27 11:03:21 +00:00
|
|
|
|
2023-11-21 15:44:16 +00:00
|
|
|
error: aborting due to 1 previous error
|
2019-01-27 11:03:21 +00:00
|
|
|
|