2018-01-10 12:00:50 -06:00
|
|
|
error[E0621]: explicit lifetime required in the type of `x`
|
2017-11-22 16:39:46 -06:00
|
|
|
--> $DIR/region-lbr-anon-does-not-outlive-static.rs:19:5
|
|
|
|
|
|
2018-02-22 18:42:32 -06:00
|
|
|
LL | fn foo(x: &u32) -> &'static u32 {
|
2018-08-06 12:56:24 -05:00
|
|
|
| ---- help: add explicit lifetime `ReStatic` to the type of `x`: `&ReStatic u32`
|
2018-02-22 18:42:32 -06:00
|
|
|
LL | &*x
|
2018-01-10 12:00:50 -06:00
|
|
|
| ^^^ lifetime `ReStatic` required
|
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
|
|
|
|
2018-03-03 08:59:40 -06:00
|
|
|
For more information about this error, try `rustc --explain E0621`.
|