]> git.lizzy.rs Git - rust.git/blob - src/test/ui/union/union-sized-field.stderr
Suggest boxing or borrowing unsized fields
[rust.git] / src / test / ui / union / union-sized-field.stderr
1 error[E0277]: the size for values of type `T` cannot be known at compilation time
2   --> $DIR/union-sized-field.rs:4:12
3    |
4 LL | union Foo<T: ?Sized> {
5    |           - this type parameter needs to be `std::marker::Sized`
6 LL |     value: 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: no field of a union may have a dynamically sized type
12    = help: change the field's type to have a statically known size
13 help: borrowed types always have a statically known size
14    |
15 LL |     value: &T,
16    |            ^
17 help: heap allocated types always have a statically known size
18    |
19 LL |     value: Box<T>,
20    |            ^^^^ ^
21
22 error[E0277]: the size for values of type `T` cannot be known at compilation time
23   --> $DIR/union-sized-field.rs:9:12
24    |
25 LL | struct Foo2<T: ?Sized> {
26    |             - this type parameter needs to be `std::marker::Sized`
27 LL |     value: T,
28    |            ^ doesn't have a size known at compile-time
29    |
30    = help: the trait `std::marker::Sized` is not implemented for `T`
31    = note: to learn more, visit <https://doc.rust-lang.org/book/ch19-04-advanced-types.html#dynamically-sized-types-and-the-sized-trait>
32    = note: only the last field of a struct may have a dynamically sized type
33    = help: change the field's type to have a statically known size
34 help: borrowed types always have a statically known size
35    |
36 LL |     value: &T,
37    |            ^
38 help: heap allocated types always have a statically known size
39    |
40 LL |     value: Box<T>,
41    |            ^^^^ ^
42
43 error[E0277]: the size for values of type `T` cannot be known at compilation time
44   --> $DIR/union-sized-field.rs:15:11
45    |
46 LL | enum Foo3<T: ?Sized> {
47    |           - this type parameter needs to be `std::marker::Sized`
48 LL |     Value(T),
49    |           ^ doesn't have a size known at compile-time
50    |
51    = help: the trait `std::marker::Sized` is not implemented for `T`
52    = note: to learn more, visit <https://doc.rust-lang.org/book/ch19-04-advanced-types.html#dynamically-sized-types-and-the-sized-trait>
53    = note: no field of an enum variant may have a dynamically sized type
54    = help: change the field's type to have a statically known size
55 help: borrowed types always have a statically known size
56    |
57 LL |     Value(&T),
58    |           ^
59 help: heap allocated types always have a statically known size
60    |
61 LL |     Value(Box<T>),
62    |           ^^^^ ^
63
64 error: aborting due to 3 previous errors
65
66 For more information about this error, try `rustc --explain E0277`.