2018-12-11 15:49:40 -06:00
|
|
|
error: lifetime may not live long enough
|
2018-12-25 08:56:47 -07:00
|
|
|
--> $DIR/region-lbr-named-does-not-outlive-static.rs:9:5
|
2017-11-22 17:39:46 -05:00
|
|
|
|
|
2018-08-02 12:00:15 +02:00
|
|
|
LL | fn foo<'a>(x: &'a u32) -> &'static u32 {
|
|
|
|
| -- lifetime `'a` defined here
|
2018-02-23 03:42:32 +03:00
|
|
|
LL | &*x
|
2018-08-07 21:48:50 +01:00
|
|
|
| ^^^ returning this value requires that `'a` must outlive `'static`
|
2018-11-28 15:05:36 -06:00
|
|
|
|
2017-11-22 17:39:46 -05:00
|
|
|
error: aborting due to previous error
|
|
|
|
|