rust/tests/ui/packed/issue-27060-2.stderr

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

28 lines
980 B
Plaintext
Raw Normal View History

2018-07-15 16:11:54 -05:00
error[E0277]: the size for values of type `T` cannot be known at compilation time
--> $DIR/issue-27060-2.rs:3:11
2018-07-15 16:11:54 -05:00
|
2019-10-08 13:03:35 -05:00
LL | pub struct Bad<T: ?Sized> {
| - this type parameter needs to be `Sized`
2019-03-09 06:03:44 -06:00
LL | data: T,
| ^ doesn't have a size known at compile-time
2018-07-15 16:11:54 -05: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
= help: change the field's type to have a statically known size
help: consider removing the `?Sized` bound to make the type parameter `Sized`
|
LL - pub struct Bad<T: ?Sized> {
LL + pub struct Bad<T> {
2022-06-08 12:34:57 -05:00
|
help: borrowed types always have a statically known size
|
LL | data: &T,
| +
2020-07-14 14:18:01 -05:00
help: the `Box` type always has a statically known size and allocates its contents in the heap
|
LL | data: Box<T>,
| ++++ +
2018-07-15 16:11:54 -05:00
error: aborting due to previous error
For more information about this error, try `rustc --explain E0277`.