2018-08-08 07:28:26 -05:00
|
|
|
error[E0277]: the size for values of type `str` cannot be known at compilation time
|
2022-06-29 21:33:18 -05:00
|
|
|
--> $DIR/union-unsized.rs:5:8
|
2018-08-08 07:28:26 -05:00
|
|
|
|
|
|
|
|
LL | a: str,
|
2020-07-10 17:13:49 -05:00
|
|
|
| ^^^ doesn't have a size known at compile-time
|
2018-08-08 07:28:26 -05:00
|
|
|
|
|
2020-09-02 02:40:56 -05:00
|
|
|
= help: the trait `Sized` is not implemented for `str`
|
2018-08-08 07:28:26 -05:00
|
|
|
= note: no field of a union may have a dynamically sized type
|
2020-07-10 17:13:49 -05:00
|
|
|
= help: change the field's type to have a statically known size
|
|
|
|
help: borrowed types always have a statically known size
|
|
|
|
|
|
|
|
|
LL | a: &str,
|
2021-06-21 21:07:19 -05:00
|
|
|
| +
|
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
|
2020-07-10 17:13:49 -05:00
|
|
|
|
|
|
|
|
LL | a: Box<str>,
|
2021-06-21 21:07:19 -05:00
|
|
|
| ++++ +
|
2018-08-08 07:28:26 -05:00
|
|
|
|
|
|
|
error[E0277]: the size for values of type `str` cannot be known at compilation time
|
2022-06-29 21:33:18 -05:00
|
|
|
--> $DIR/union-unsized.rs:13:8
|
2018-08-08 07:28:26 -05:00
|
|
|
|
|
|
|
|
LL | b: str,
|
2020-07-10 17:13:49 -05:00
|
|
|
| ^^^ doesn't have a size known at compile-time
|
2018-08-08 07:28:26 -05:00
|
|
|
|
|
2020-09-02 02:40:56 -05:00
|
|
|
= help: the trait `Sized` is not implemented for `str`
|
2018-08-08 07:28:26 -05:00
|
|
|
= note: no field of a union may have a dynamically sized type
|
2020-07-10 17:13:49 -05:00
|
|
|
= help: change the field's type to have a statically known size
|
|
|
|
help: borrowed types always have a statically known size
|
|
|
|
|
|
|
|
|
LL | b: &str,
|
2021-06-21 21:07:19 -05:00
|
|
|
| +
|
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
|
2020-07-10 17:13:49 -05:00
|
|
|
|
|
|
|
|
LL | b: Box<str>,
|
2021-06-21 21:07:19 -05:00
|
|
|
| ++++ +
|
2018-08-08 07:28:26 -05:00
|
|
|
|
|
|
|
error: aborting due to 2 previous errors
|
|
|
|
|
|
|
|
For more information about this error, try `rustc --explain E0277`.
|