]> git.lizzy.rs Git - rust.git/blob - src/test/ui/issues/issue-23281.stderr
Merge commit '48d60ab7c505c6c1ebb042eacaafd8dc9f7a9267' into libgccjit-codegen
[rust.git] / src / test / ui / issues / issue-23281.stderr
1 error[E0277]: the size for values of type `(dyn Fn() + 'static)` cannot be known at compilation time
2   --> $DIR/issue-23281.rs:4:27
3    |
4 LL |     pub fn function(funs: Vec<dyn Fn() -> ()>) {}
5    |                           ^^^^^^^^^^^^^^^^^^^ doesn't have a size known at compile-time
6 ...
7 LL | struct Vec<T> {
8    |            - required by this bound in `Vec`
9    |
10    = help: the trait `Sized` is not implemented for `(dyn Fn() + 'static)`
11 help: you could relax the implicit `Sized` bound on `T` if it were used through indirection like `&T` or `Box<T>`
12   --> $DIR/issue-23281.rs:8:12
13    |
14 LL | struct Vec<T> {
15    |            ^ this could be changed to `T: ?Sized`...
16 LL |     t: T,
17    |        - ...if indirection were used here: `Box<T>`
18
19 error: aborting due to previous error
20
21 For more information about this error, try `rustc --explain E0277`.