2021-11-12 23:43:43 -06:00
|
|
|
error: lifetime may not live long enough
|
2018-12-25 09:56:47 -06:00
|
|
|
--> $DIR/region-lbr-anon-does-not-outlive-static.rs:9:5
|
2017-11-22 16:39:46 -06:00
|
|
|
|
|
2021-11-12 23:43:43 -06:00
|
|
|
LL | fn foo(x: &u32) -> &'static u32 {
|
|
|
|
| - let's call the lifetime of this reference `'1`
|
2018-02-22 18:42:32 -06:00
|
|
|
LL | &*x
|
2021-11-12 23:43:43 -06:00
|
|
|
| ^^^ returning this value requires that `'1` must outlive `'static`
|
2017-11-22 16:39:46 -06:00
|
|
|
|
2017-12-06 15:35:36 -06:00
|
|
|
error: aborting due to previous error
|
2017-11-22 16:39:46 -06:00
|
|
|
|