mirror of https://github.com/rust-lang/rust.git
16 lines
544 B
Plaintext
16 lines
544 B
Plaintext
error: lifetime may not live long enough
|
|
--> $DIR/variance-uniquearc.rs:17:5
|
|
|
|
|
LL | fn extend_lifetime<'a, 'b>(x: &'a str) -> &'b str {
|
|
| -- -- lifetime `'b` defined here
|
|
| |
|
|
| lifetime `'a` defined here
|
|
...
|
|
LL | *r // &'static str, coerces to &'b str
|
|
| ^^ function was supposed to return data with lifetime `'b` but it is returning data with lifetime `'a`
|
|
|
|
|
= help: consider adding the following bound: `'a: 'b`
|
|
|
|
error: aborting due to 1 previous error
|
|
|