rust/src/test/ui/union/union-unsized.thirunsafeck.stderr

40 lines
1.3 KiB
Plaintext
Raw Normal View History

2018-08-08 07:28:26 -05:00
error[E0277]: the size for values of type `str` cannot be known at compilation time
--> $DIR/union-unsized.rs:7:8
2018-08-08 07:28:26 -05:00
|
LL | a: str,
| ^^^ doesn't have a size known at compile-time
2018-08-08 07:28:26 -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
= help: change the field's type to have a statically known size
help: borrowed types always have a statically known size
|
LL | a: &str,
| ^
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
|
LL | a: Box<str>,
| ^^^^ ^
2018-08-08 07:28:26 -05:00
error[E0277]: the size for values of type `str` cannot be known at compilation time
--> $DIR/union-unsized.rs:15:8
2018-08-08 07:28:26 -05:00
|
LL | b: str,
| ^^^ doesn't have a size known at compile-time
2018-08-08 07:28:26 -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
= help: change the field's type to have a statically known size
help: borrowed types always have a statically known size
|
LL | b: &str,
| ^
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
|
LL | b: Box<str>,
| ^^^^ ^
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`.