]> git.lizzy.rs Git - rust.git/blob - src/test/ui/issues/issue-27060-2.stderr
1ddea73e00ae0ee214bec8bea40b715e919eded0
[rust.git] / src / test / ui / issues / issue-27060-2.stderr
1 error[E0277]: the size for values of type `T` cannot be known at compilation time
2   --> $DIR/issue-27060-2.rs:3:5
3    |
4 LL | pub struct Bad<T: ?Sized> {
5    |                - this type parameter needs to be `std::marker::Sized`
6 LL |     data: T,
7    |     ^^^^^^^ doesn't have a size known at compile-time
8    |
9    = help: the trait `std::marker::Sized` is not implemented for `T`
10    = note: to learn more, visit <https://doc.rust-lang.org/book/ch19-04-advanced-types.html#dynamically-sized-types-and-the-sized-trait>
11    = note: the last field of a packed struct may only have a dynamically sized type if it does not need drop to be run
12
13 error: aborting due to previous error
14
15 For more information about this error, try `rustc --explain E0277`.