2021-11-12 23:43:43 -06:00
|
|
|
error: lifetime may not live long enough
|
2022-04-01 12:13:25 -05:00
|
|
|
--> $DIR/issue-46983.rs:2:5
|
2021-11-12 23:43:43 -06:00
|
|
|
|
|
|
|
|
LL | fn foo(x: &u32) -> &'static u32 {
|
|
|
|
| - let's call the lifetime of this reference `'1`
|
|
|
|
LL | &*x
|
|
|
|
| ^^^ returning this value requires that `'1` must outlive `'static`
|
|
|
|
|
|
|
|
error: aborting due to previous error
|
|
|
|
|