2018-01-10 17:12:23 +00:00
|
|
|
error[E0621]: explicit lifetime required in the type of `x`
|
|
|
|
--> $DIR/issue-46983.rs:14:5
|
|
|
|
|
|
2018-02-23 03:42:32 +03:00
|
|
|
LL | fn foo(x: &u32) -> &'static u32 {
|
2018-01-10 17:12:23 +00:00
|
|
|
| - consider changing the type of `x` to `&'static u32`
|
2018-02-23 03:42:32 +03:00
|
|
|
LL | &*x
|
2018-01-10 17:12:23 +00:00
|
|
|
| ^^^ lifetime `'static` required
|
|
|
|
|
|
|
|
error: aborting due to previous error
|
|
|
|
|
2018-03-03 15:59:40 +01:00
|
|
|
For more information about this error, try `rustc --explain E0621`.
|