2019-01-27 11:03:21 +00:00
|
|
|
error: lifetime may not live long enough
|
2022-04-01 17:13:25 +00:00
|
|
|
--> $DIR/regions-trait-object-subtyping.rs:15:5
|
2019-01-27 11:03:21 +00:00
|
|
|
|
|
2019-05-28 18:46:13 +00:00
|
|
|
LL | fn foo3<'a,'b>(x: &'a mut dyn Dummy) -> &'b mut dyn Dummy {
|
2019-01-27 11:03:21 +00:00
|
|
|
| -- -- lifetime `'b` defined here
|
|
|
|
| |
|
|
|
|
| lifetime `'a` defined here
|
|
|
|
LL | // Without knowing 'a:'b, we can't coerce
|
|
|
|
LL | x
|
2021-12-31 21:55:34 +00:00
|
|
|
| ^ function was supposed to return data with lifetime `'b` but it is returning data with lifetime `'a`
|
2019-10-27 14:39:14 +00:00
|
|
|
|
|
|
|
|
= help: consider adding the following bound: `'a: 'b`
|
2022-04-02 22:32:39 +00:00
|
|
|
= note: requirement occurs because of a mutable reference to `dyn Dummy`
|
2021-05-13 13:30:14 +00:00
|
|
|
= 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
|
|
|
|
|
|
|
error: lifetime may not live long enough
|
2022-04-01 17:13:25 +00:00
|
|
|
--> $DIR/regions-trait-object-subtyping.rs:22:5
|
2019-01-27 11:03:21 +00:00
|
|
|
|
|
2019-05-28 18:46:13 +00:00
|
|
|
LL | fn foo4<'a:'b,'b>(x: Wrapper<&'a mut dyn Dummy>) -> Wrapper<&'b mut dyn Dummy> {
|
2019-01-27 11:03:21 +00:00
|
|
|
| -- -- lifetime `'b` defined here
|
|
|
|
| |
|
|
|
|
| lifetime `'a` defined here
|
|
|
|
LL | // We can't coerce because it is packed in `Wrapper`
|
|
|
|
LL | x
|
2021-12-31 21:55:34 +00:00
|
|
|
| ^ function was supposed to return data with lifetime `'a` but it is returning data with lifetime `'b`
|
2019-10-27 14:39:14 +00:00
|
|
|
|
|
|
|
|
= help: consider adding the following bound: `'b: 'a`
|
2022-04-02 22:32:39 +00:00
|
|
|
= note: requirement occurs because of a mutable reference to `dyn Dummy`
|
2021-05-13 13:30:14 +00:00
|
|
|
= 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
|
|
|
|
|
|
|
error: aborting due to 2 previous errors
|
|
|
|
|