error[E0277]: the size for values of type `[u8]` cannot be known at compilation time --> $DIR/suggest-maybe-sized-bound.rs:8:12 | LL | a: StructA, | ^^^^^^^^^^^^^^^^^^^^ doesn't have a size known at compile-time | = help: the trait `Sized` is not implemented for `[u8]` note: required by an implicit `Sized` bound in `StructA` --> $DIR/suggest-maybe-sized-bound.rs:3:23 | LL | struct StructA { | ^^^^^ required by the implicit `Sized` requirement on this type parameter in `StructA` help: consider relaxing the implicit `Sized` restriction | LL | struct StructA { | ++++++++ error[E0277]: the size for values of type `[u8]` cannot be known at compilation time --> $DIR/suggest-maybe-sized-bound.rs:17:21 | LL | type P = [u8]; | ^^^^ doesn't have a size known at compile-time | = help: the trait `Sized` is not implemented for `[u8]` note: required by a bound in `Trait::P` --> $DIR/suggest-maybe-sized-bound.rs:13:9 | LL | type P; | ^^^^^^^^^^ required by this bound in `Trait::P` help: consider relaxing the implicit `Sized` restriction | LL | type P: ?Sized; | ++++++++ error: aborting due to 2 previous errors For more information about this error, try `rustc --explain E0277`.