blob: e2da60358817aeb0f57ff17f8adfd6e12cb61f2c [file] [log] [blame]
error[E0277]: the size for values of type `str` cannot be known at compilation time
--> $DIR/union-unsized.rs:14:5
|
LL | a: str,
| ^^^^^^ doesn't have a size known at compile-time
|
= help: the trait `std::marker::Sized` is not implemented for `str`
= note: to learn more, visit <https://doc.rust-lang.org/book/second-edition/ch19-04-advanced-types.html#dynamically-sized-types-and-the-sized-trait>
= note: no field of a union may have a dynamically sized type
error[E0277]: the size for values of type `str` cannot be known at compilation time
--> $DIR/union-unsized.rs:22:5
|
LL | b: str,
| ^^^^^^ doesn't have a size known at compile-time
|
= help: the trait `std::marker::Sized` is not implemented for `str`
= note: to learn more, visit <https://doc.rust-lang.org/book/second-edition/ch19-04-advanced-types.html#dynamically-sized-types-and-the-sized-trait>
= note: no field of a union may have a dynamically sized type
error: aborting due to 2 previous errors
For more information about this error, try `rustc --explain E0277`.