mirror of
https://github.com/rust-lang/rust.git
synced 2024-10-31 22:41:50 +00:00
41e8d152dc
Co-authored-by: Adrian <adrian.iosdev@gmail.com>
12 lines
294 B
Plaintext
12 lines
294 B
Plaintext
error: lifetime may not live long enough
|
|
--> $DIR/issue-54943.rs:6:13
|
|
|
|
|
LL | fn boo<'a>() {
|
|
| -- lifetime `'a` defined here
|
|
...
|
|
LL | let x = foo::<&'a u32>();
|
|
| ^^^^^^^^^^^^^^ requires that `'a` must outlive `'static`
|
|
|
|
error: aborting due to 1 previous error
|
|
|