2018-08-08 07:28:26 -05:00
|
|
|
error[E0277]: the size for values of type `X` cannot be known at compilation time
|
2020-07-10 17:13:49 -05:00
|
|
|
--> $DIR/unsized5.rs:4:9
|
2018-08-08 07:28:26 -05:00
|
|
|
|
|
2019-10-08 13:03:35 -05:00
|
|
|
LL | struct S1<X: ?Sized> {
|
2020-02-02 04:03:54 -06:00
|
|
|
| - this type parameter needs to be `std::marker::Sized`
|
2018-08-08 07:28:26 -05:00
|
|
|
LL | f1: X,
|
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
|
|
|
|
|
|
|
|
= note: only the last field of a struct 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 | f1: &X,
|
|
|
|
| ^
|
|
|
|
help: heap allocated types always have a statically known size
|
|
|
|
|
|
|
|
|
LL | f1: Box<X>,
|
|
|
|
| ^^^^ ^
|
2018-08-08 07:28:26 -05:00
|
|
|
|
|
|
|
error[E0277]: the size for values of type `X` cannot be known at compilation time
|
2020-07-10 17:13:49 -05:00
|
|
|
--> $DIR/unsized5.rs:10:8
|
2018-08-08 07:28:26 -05:00
|
|
|
|
|
2019-10-08 13:03:35 -05:00
|
|
|
LL | struct S2<X: ?Sized> {
|
2020-02-02 04:03:54 -06:00
|
|
|
| - this type parameter needs to be `std::marker::Sized`
|
2019-10-08 13:03:35 -05:00
|
|
|
LL | f: isize,
|
2018-08-08 07:28:26 -05:00
|
|
|
LL | g: X,
|
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
|
|
|
|
|
|
|
|
= note: only the last field of a struct 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 | g: &X,
|
|
|
|
| ^
|
|
|
|
help: heap allocated types always have a statically known size
|
|
|
|
|
|
|
|
|
LL | g: Box<X>,
|
|
|
|
| ^^^^ ^
|
2018-08-08 07:28:26 -05:00
|
|
|
|
|
|
|
error[E0277]: the size for values of type `str` cannot be known at compilation time
|
2020-07-10 17:13:49 -05:00
|
|
|
--> $DIR/unsized5.rs:15:8
|
2018-08-08 07:28:26 -05:00
|
|
|
|
|
|
|
|
LL | f: 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
|
|
|
|
|
|
|
|
= help: the trait `std::marker::Sized` is not implemented for `str`
|
|
|
|
= note: only the last field of a struct 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 | f: &str,
|
|
|
|
| ^
|
|
|
|
help: heap allocated types always have a statically known size
|
|
|
|
|
|
|
|
|
LL | f: Box<str>,
|
|
|
|
| ^^^^ ^
|
2018-08-08 07:28:26 -05:00
|
|
|
|
|
|
|
error[E0277]: the size for values of type `[u8]` cannot be known at compilation time
|
2020-07-10 17:13:49 -05:00
|
|
|
--> $DIR/unsized5.rs:20:8
|
2018-08-08 07:28:26 -05:00
|
|
|
|
|
|
|
|
LL | f: [u8],
|
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
|
|
|
|
|
|
|
|
= help: the trait `std::marker::Sized` is not implemented for `[u8]`
|
|
|
|
= note: only the last field of a struct 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 | f: &[u8],
|
|
|
|
| ^
|
|
|
|
help: heap allocated types always have a statically known size
|
|
|
|
|
|
|
|
|
LL | f: Box<[u8]>,
|
|
|
|
| ^^^^ ^
|
2018-08-08 07:28:26 -05:00
|
|
|
|
|
|
|
error[E0277]: the size for values of type `X` cannot be known at compilation time
|
2018-12-25 09:56:47 -06:00
|
|
|
--> $DIR/unsized5.rs:25:8
|
2018-08-08 07:28:26 -05:00
|
|
|
|
|
2019-10-08 13:03:35 -05:00
|
|
|
LL | enum E<X: ?Sized> {
|
2020-02-02 04:03:54 -06:00
|
|
|
| - this type parameter needs to be `std::marker::Sized`
|
2018-08-08 07:28:26 -05:00
|
|
|
LL | V1(X, isize),
|
|
|
|
| ^ doesn't have a size known at compile-time
|
|
|
|
|
|
|
|
|
= note: no field of an enum variant 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 | V1(&X, isize),
|
|
|
|
| ^
|
|
|
|
help: heap allocated types always have a statically known size
|
|
|
|
|
|
|
|
|
LL | V1(Box<X>, isize),
|
|
|
|
| ^^^^ ^
|
2018-08-08 07:28:26 -05:00
|
|
|
|
|
|
|
error[E0277]: the size for values of type `X` cannot be known at compilation time
|
2020-07-10 17:13:49 -05:00
|
|
|
--> $DIR/unsized5.rs:29:12
|
2018-08-08 07:28:26 -05:00
|
|
|
|
|
2019-10-08 13:03:35 -05:00
|
|
|
LL | enum F<X: ?Sized> {
|
2020-02-02 04:03:54 -06:00
|
|
|
| - this type parameter needs to be `std::marker::Sized`
|
2018-08-08 07:28:26 -05:00
|
|
|
LL | V2{f1: X, f: isize},
|
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
|
|
|
|
|
|
|
|
= note: no field of an enum variant 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 | V2{f1: &X, f: isize},
|
|
|
|
| ^
|
|
|
|
help: heap allocated types always have a statically known size
|
|
|
|
|
|
|
|
|
LL | V2{f1: Box<X>, f: isize},
|
|
|
|
| ^^^^ ^
|
2018-08-08 07:28:26 -05:00
|
|
|
|
|
|
|
error: aborting due to 6 previous errors
|
|
|
|
|
|
|
|
For more information about this error, try `rustc --explain E0277`.
|