2018-07-15 21:11:54 +00:00
|
|
|
error[E0277]: the size for values of type `T` cannot be known at compilation time
|
2020-07-10 22:13:49 +00:00
|
|
|
--> $DIR/issue-27060-2.rs:3:11
|
2018-07-15 21:11:54 +00:00
|
|
|
|
|
2019-10-08 18:03:35 +00:00
|
|
|
LL | pub struct Bad<T: ?Sized> {
|
2023-06-14 17:22:03 +00:00
|
|
|
| - this type parameter needs to be `Sized`
|
2019-03-09 12:03:44 +00:00
|
|
|
LL | data: T,
|
2020-07-10 22:13:49 +00:00
|
|
|
| ^ doesn't have a size known at compile-time
|
2018-07-15 21:11:54 +00:00
|
|
|
|
|
2018-08-14 10:50:01 +00:00
|
|
|
= note: the last field of a packed struct may only have a dynamically sized type if it does not need drop to be run
|
2020-07-10 22:13:49 +00:00
|
|
|
= help: change the field's type to have a statically known size
|
2021-07-24 01:47:53 +00:00
|
|
|
help: consider removing the `?Sized` bound to make the type parameter `Sized`
|
|
|
|
|
|
2021-06-22 02:07:19 +00:00
|
|
|
LL - pub struct Bad<T: ?Sized> {
|
|
|
|
LL + pub struct Bad<T> {
|
2022-06-08 17:34:57 +00:00
|
|
|
|
|
2020-07-10 22:13:49 +00:00
|
|
|
help: borrowed types always have a statically known size
|
|
|
|
|
|
|
|
|
LL | data: &T,
|
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 | data: Box<T>,
|
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`.
|