2019-01-12 14:55:23 +00:00
|
|
|
error: lifetime may not live long enough
|
2019-08-09 18:43:30 +01:00
|
|
|
--> $DIR/regions-outlives-projection-container-wc.rs:33:12
|
2019-01-12 14:55:23 +00:00
|
|
|
|
|
|
|
|
LL | fn with_assoc<'a,'b>() {
|
|
|
|
| -- -- lifetime `'b` defined here
|
|
|
|
| |
|
|
|
|
| lifetime `'a` defined here
|
|
|
|
...
|
|
|
|
LL | let _: &'a WithAssoc<TheType<'b>> = loop { };
|
|
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^ type annotation requires that `'b` must outlive `'a`
|
|
|
|
|
2018-11-28 15:05:36 -06:00
|
|
|
help: the following changes may resolve your lifetime errors
|
|
|
|
|
|
|
|
|
= help: add bound `'b: 'a`
|
|
|
|
|
2019-01-12 14:55:23 +00:00
|
|
|
error: aborting due to previous error
|
|
|
|
|