blob: 1c270d6c366f528cc75f8cbc52785d3581be77c2 [file] [log] [blame] [edit]
error: lifetime may not live long enough
--> $DIR/regions-outlives-projection-container-wc.rs:30:12
|
LL | fn with_assoc<'a,'b>() {
| -- -- lifetime `'b` defined here
| |
| lifetime `'a` defined here
...
LL | let _: &'a WithAssoc<TheType<'b>> = loop { };
| ^^^^^^^^^^^^^^^^^^^^^^^^^^ requires that `'b` must outlive `'a`
|
= help: consider adding the following bound: `'b: 'a`
error: aborting due to 1 previous error