2017-12-10 19:47:55 +00:00
|
|
|
error[E0282]: type annotations needed
|
2022-07-01 13:49:05 +00:00
|
|
|
--> $DIR/issue-23041.rs:6:7
|
2017-12-10 19:47:55 +00:00
|
|
|
|
|
2019-03-09 12:03:44 +00:00
|
|
|
LL | b.downcast_ref::<fn(_)->_>();
|
2023-02-21 21:11:08 +00:00
|
|
|
| ^^^^^^^^^^^^ cannot infer type of the type parameter `T` declared on the method `downcast_ref`
|
2022-07-01 13:49:05 +00:00
|
|
|
|
|
2022-07-22 00:28:03 +00:00
|
|
|
help: consider specifying the generic argument
|
2022-07-01 13:49:05 +00:00
|
|
|
|
|
|
|
|
LL | b.downcast_ref::<fn(_) -> _>();
|
|
|
|
| ~~~~~~~~~~~~~~
|
2017-12-10 19:47:55 +00:00
|
|
|
|
|
|
|
error: aborting due to previous error
|
|
|
|
|
2018-03-03 14:59:40 +00:00
|
|
|
For more information about this error, try `rustc --explain E0282`.
|