2022-09-21 15:57:30 +00:00
|
|
|
error[E0277]: the size for values of type `dyn for<'a> Fn(&'a isize) -> isize` cannot be known at compilation time
|
2020-01-18 22:57:56 +00:00
|
|
|
--> $DIR/issue-18919.rs:3:15
|
2018-07-15 21:11:54 +00:00
|
|
|
|
|
2020-01-18 22:57:56 +00:00
|
|
|
LL | fn ho_func(f: Option<FuncType>) {
|
|
|
|
| ^^^^^^^^^^^^^^^^ doesn't have a size known at compile-time
|
2018-07-15 21:11:54 +00:00
|
|
|
|
|
2022-09-21 15:57:30 +00:00
|
|
|
= help: the trait `Sized` is not implemented for `dyn for<'a> Fn(&'a isize) -> isize`
|
2021-07-31 16:26:55 +00:00
|
|
|
note: required by a bound in `Option`
|
|
|
|
--> $DIR/issue-18919.rs:7:13
|
|
|
|
|
|
|
|
|
LL | enum Option<T> {
|
|
|
|
| ^ required by this bound in `Option`
|
2020-06-17 00:24:16 +00:00
|
|
|
help: you could relax the implicit `Sized` bound on `T` if it were used through indirection like `&T` or `Box<T>`
|
|
|
|
--> $DIR/issue-18919.rs:7:13
|
|
|
|
|
|
|
|
|
LL | enum Option<T> {
|
|
|
|
| ^ this could be changed to `T: ?Sized`...
|
|
|
|
LL | Some(T),
|
2021-02-04 05:41:18 +00:00
|
|
|
| - ...if indirection were used here: `Box<T>`
|
2018-07-15 21:11:54 +00:00
|
|
|
|
|
|
|
error: aborting due to previous error
|
|
|
|
|
|
|
|
For more information about this error, try `rustc --explain E0277`.
|