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