mirror of
https://github.com/rust-lang/rust
synced 2024-11-05 20:45:15 +00:00
41e8d152dc
Co-authored-by: Adrian <adrian.iosdev@gmail.com>
15 lines
499 B
Text
15 lines
499 B
Text
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
|
|
|