2022-01-05 10:43:21 +00:00
|
|
|
error[E0121]: the placeholder `_` is not allowed within types on item signatures for return types
|
2020-12-22 19:25:37 +00:00
|
|
|
--> $DIR/issue-80179.rs:10:24
|
|
|
|
|
|
|
|
|
LL | fn returns_fn_ptr() -> _ {
|
|
|
|
| ^
|
|
|
|
| |
|
|
|
|
| not allowed in type signatures
|
|
|
|
| help: replace with the correct return type: `fn() -> i32`
|
|
|
|
|
2022-01-05 10:43:21 +00:00
|
|
|
error[E0121]: the placeholder `_` is not allowed within types on item signatures for return types
|
2020-12-22 19:25:37 +00:00
|
|
|
--> $DIR/issue-80179.rs:18:25
|
|
|
|
|
|
|
|
|
LL | fn returns_closure() -> _ {
|
2022-12-27 23:56:46 +00:00
|
|
|
| ^
|
|
|
|
| |
|
|
|
|
| not allowed in type signatures
|
|
|
|
| help: replace with an appropriate return type: `impl Fn() -> i32`
|
2023-01-04 00:26:53 +00:00
|
|
|
|
|
|
|
|
= note: for more information on `Fn` traits and closure types, see https://doc.rust-lang.org/book/ch13-01-closures.html
|
2020-12-22 19:25:37 +00:00
|
|
|
|
|
|
|
error: aborting due to 2 previous errors
|
|
|
|
|
|
|
|
For more information about this error, try `rustc --explain E0121`.
|