blob: 31aeebd5a721ea5b658ae0e56110e76e4bf62169 (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
error[E0621]: explicit lifetime required in the type of `x`
--> $DIR/issue-46983.rs:14:5
|
LL | fn foo(x: &u32) -> &'static u32 {
| - consider changing the type of `x` to `&'static u32`
LL | &*x
| ^^^ lifetime `'static` required
error: aborting due to previous error
For more information about this error, try `rustc --explain E0621`.
|