2020-09-02 07:40:56 +00:00
|
|
|
error[E0277]: the size for values of type `[Box<E>]` cannot be known at compilation time
|
2018-12-25 15:56:47 +00:00
|
|
|
--> $DIR/issue-35988.rs:2:7
|
2018-07-15 21:11:54 +00:00
|
|
|
|
|
|
|
|
LL | V([Box<E>]),
|
|
|
|
| ^^^^^^^^ doesn't have a size known at compile-time
|
|
|
|
|
|
2020-09-02 07:40:56 +00:00
|
|
|
= help: the trait `Sized` is not implemented for `[Box<E>]`
|
2018-07-15 21:11:54 +00:00
|
|
|
= note: no field of an enum variant may have a dynamically sized type
|
2020-07-10 22:13:49 +00:00
|
|
|
= help: change the field's type to have a statically known size
|
|
|
|
help: borrowed types always have a statically known size
|
|
|
|
|
|
|
|
|
LL | V(&[Box<E>]),
|
2021-06-22 02:07:19 +00:00
|
|
|
| +
|
2020-07-14 19:18:01 +00:00
|
|
|
help: the `Box` type always has a statically known size and allocates its contents in the heap
|
2020-07-10 22:13:49 +00:00
|
|
|
|
|
|
|
|
LL | V(Box<[Box<E>]>),
|
2021-06-22 02:07:19 +00:00
|
|
|
| ++++ +
|
2018-07-15 21:11:54 +00:00
|
|
|
|
2023-11-21 15:44:16 +00:00
|
|
|
error: aborting due to 1 previous error
|
2018-07-15 21:11:54 +00:00
|
|
|
|
|
|
|
For more information about this error, try `rustc --explain E0277`.
|