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