]> git.proxmox.com Git - rustc.git/blame - src/test/ui/issues/issue-27060-2.stderr
New upstream version 1.40.0+dfsg1
[rustc.git] / src / test / ui / issues / issue-27060-2.stderr
CommitLineData
8faf50e0 1error[E0277]: the size for values of type `T` cannot be known at compilation time
0731742a 2 --> $DIR/issue-27060-2.rs:3:5
8faf50e0 3 |
e74abb32
XL
4LL | pub struct Bad<T: ?Sized> {
5 | -- help: consider further restricting this bound: `T: std::marker::Sized +`
532ac7d7 6LL | data: T,
8faf50e0
XL
7 | ^^^^^^^ doesn't have a size known at compile-time
8 |
9 = help: the trait `std::marker::Sized` is not implemented for `T`
0731742a 10 = note: to learn more, visit <https://doc.rust-lang.org/book/ch19-04-advanced-types.html#dynamically-sized-types-and-the-sized-trait>
b7449926 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
8faf50e0
XL
12
13error: aborting due to previous error
14
15For more information about this error, try `rustc --explain E0277`.