mirror of
https://github.com/rust-lang/rust.git
synced 2025-11-25 09:48:13 +00:00
11 lines
365 B
Plaintext
11 lines
365 B
Plaintext
error: lifetime may not live long enough
|
|
--> $DIR/ret-ty-borrowck-constraints.rs:5:5
|
|
|
|
|
LL | fn link(x: &str) -> &'static str {
|
|
| - let's call the lifetime of this reference `'1`
|
|
LL | become passthrough(x);
|
|
| ^^^^^^^^^^^^^^^^^^^^^ returning this value requires that `'1` must outlive `'static`
|
|
|
|
error: aborting due to 1 previous error
|
|
|