2024-01-07 17:11:48 +00:00
|
|
|
error[E0562]: `impl Trait` is not allowed in static types
|
2021-07-22 19:16:33 +01:00
|
|
|
--> $DIR/issue-86642.rs:1:11
|
|
|
|
|
|
|
|
|
LL | static x: impl Fn(&str) -> Result<&str, ()> = move |source| {
|
|
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
2024-01-07 17:11:48 +00:00
|
|
|
|
|
|
|
|
= note: `impl Trait` is only allowed in arguments and return types of functions and methods
|
2021-07-22 19:16:33 +01:00
|
|
|
|
2023-11-21 15:44:16 +00:00
|
|
|
error: aborting due to 1 previous error
|
2021-07-22 19:16:33 +01:00
|
|
|
|
|
|
|
For more information about this error, try `rustc --explain E0562`.
|