2019-01-12 08:55:23 -06:00
|
|
|
error: lifetime may not live long enough
|
2022-04-01 12:13:25 -05:00
|
|
|
--> $DIR/regions-outlives-projection-container-hrtb.rs:27:12
|
2019-01-12 08:55:23 -06:00
|
|
|
|
|
|
|
|
LL | fn with_assoc<'a,'b>() {
|
|
|
|
| -- -- lifetime `'b` defined here
|
|
|
|
| |
|
|
|
|
| lifetime `'a` defined here
|
|
|
|
...
|
|
|
|
LL | let _: &'a WithHrAssoc<TheType<'b>> = loop { };
|
2022-11-16 04:11:44 -06:00
|
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^ requires that `'b` must outlive `'a`
|
2018-11-28 15:05:36 -06:00
|
|
|
|
|
2019-10-27 09:39:14 -05:00
|
|
|
= help: consider adding the following bound: `'b: 'a`
|
2018-11-28 15:05:36 -06:00
|
|
|
|
2019-01-12 08:55:23 -06:00
|
|
|
error: lifetime may not live long enough
|
2022-04-01 12:13:25 -05:00
|
|
|
--> $DIR/regions-outlives-projection-container-hrtb.rs:46:12
|
2019-01-12 08:55:23 -06:00
|
|
|
|
|
|
|
|
LL | fn with_assoc_sub<'a,'b>() {
|
|
|
|
| -- -- lifetime `'b` defined here
|
|
|
|
| |
|
|
|
|
| lifetime `'a` defined here
|
|
|
|
...
|
|
|
|
LL | let _: &'a WithHrAssocSub<TheType<'b>> = loop { };
|
2022-11-16 04:11:44 -06:00
|
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ requires that `'b` must outlive `'a`
|
2018-11-28 15:05:36 -06:00
|
|
|
|
|
2019-10-27 09:39:14 -05:00
|
|
|
= help: consider adding the following bound: `'b: 'a`
|
2018-11-28 15:05:36 -06:00
|
|
|
|
2019-01-12 08:55:23 -06:00
|
|
|
error: aborting due to 2 previous errors
|
|
|
|
|