2022-09-05 19:58:12 -05:00
|
|
|
error[E0782]: trait objects must include the `dyn` keyword
|
|
|
|
--> $DIR/generic-with-implicit-hrtb-without-dyn.rs:6:24
|
|
|
|
|
|
|
|
|
LL | fn ice() -> impl AsRef<Fn(&())> {
|
|
|
|
| ^^^^^^^
|
|
|
|
|
|
|
|
|
help: add `dyn` keyword before this trait
|
|
|
|
|
|
2022-09-11 14:19:07 -05:00
|
|
|
LL | fn ice() -> impl AsRef<dyn Fn(&())> {
|
|
|
|
| +++
|
2022-09-05 19:58:12 -05:00
|
|
|
|
2022-11-11 04:29:27 -06:00
|
|
|
error: aborting due to previous error
|
2022-09-05 19:58:12 -05:00
|
|
|
|
2022-11-11 04:29:27 -06:00
|
|
|
For more information about this error, try `rustc --explain E0782`.
|