]> git.lizzy.rs Git - rust.git/blob - src/test/ui/union/union-unsized.stderr
e702f2c61bee3ff543755b0f549ad5158210a30a
[rust.git] / src / test / ui / union / union-unsized.stderr
1 error[E0277]: the size for values of type `str` cannot be known at compilation time
2   --> $DIR/union-unsized.rs:4:5
3    |
4 LL |     a: str,
5    |     ^^^^^^ doesn't have a size known at compile-time
6    |
7    = help: the trait `std::marker::Sized` is not implemented for `str`
8    = note: to learn more, visit <https://doc.rust-lang.org/book/ch19-04-advanced-types.html#dynamically-sized-types-and-the-sized-trait>
9    = note: no field of a union may have a dynamically sized type
10
11 error[E0277]: the size for values of type `str` cannot be known at compilation time
12   --> $DIR/union-unsized.rs:12:5
13    |
14 LL |     b: str,
15    |     ^^^^^^ doesn't have a size known at compile-time
16    |
17    = help: the trait `std::marker::Sized` is not implemented for `str`
18    = note: to learn more, visit <https://doc.rust-lang.org/book/ch19-04-advanced-types.html#dynamically-sized-types-and-the-sized-trait>
19    = note: no field of a union may have a dynamically sized type
20
21 error: aborting due to 2 previous errors
22
23 For more information about this error, try `rustc --explain E0277`.