2020-09-02 07:40:56 +00:00
|
|
|
error[E0277]: the size for values of type `(dyn Fn() + 'static)` cannot be known at compilation time
|
2020-01-18 22:57:56 +00:00
|
|
|
--> $DIR/issue-23281.rs:4:27
|
2018-07-15 21:11:54 +00:00
|
|
|
|
|
2019-05-28 18:46:13 +00:00
|
|
|
LL | pub fn function(funs: Vec<dyn Fn() -> ()>) {}
|
2020-01-18 22:57:56 +00:00
|
|
|
| ^^^^^^^^^^^^^^^^^^^ doesn't have a size known at compile-time
|
2018-07-15 21:11:54 +00:00
|
|
|
|
|
2020-09-02 07:40:56 +00:00
|
|
|
= help: the trait `Sized` is not implemented for `(dyn Fn() + 'static)`
|
2021-07-31 16:26:55 +00:00
|
|
|
note: required by a bound in `Vec`
|
|
|
|
--> $DIR/issue-23281.rs:8:12
|
|
|
|
|
|
|
|
|
LL | struct Vec<T> {
|
|
|
|
| ^ required by this bound in `Vec`
|
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-23281.rs:8:12
|
|
|
|
|
|
|
|
|
LL | struct Vec<T> {
|
|
|
|
| ^ this could be changed to `T: ?Sized`...
|
|
|
|
LL | t: 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`.
|