]> git.lizzy.rs Git - rust.git/blob - src/test/ui/unsized/unsized7.stderr
Rollup merge of #103163 - SUPERCILEX:uninit-array-assume2, r=scottmcm
[rust.git] / src / test / ui / unsized / unsized7.stderr
1 error[E0277]: the size for values of type `X` cannot be known at compilation time
2   --> $DIR/unsized7.rs:12:21
3    |
4 LL | impl<X: ?Sized + T> T1<X> for S3<X> {
5    |      -              ^^^^^ doesn't have a size known at compile-time
6    |      |
7    |      this type parameter needs to be `std::marker::Sized`
8    |
9 note: required by a bound in `T1`
10   --> $DIR/unsized7.rs:7:10
11    |
12 LL | trait T1<Z: T> {
13    |          ^ required by this bound in `T1`
14 help: consider removing the `?Sized` bound to make the type parameter `Sized`
15    |
16 LL - impl<X: ?Sized + T> T1<X> for S3<X> {
17 LL + impl<X: T> T1<X> for S3<X> {
18    |
19 help: consider relaxing the implicit `Sized` restriction
20    |
21 LL | trait T1<Z: T + ?Sized> {
22    |               ++++++++
23
24 error: aborting due to previous error
25
26 For more information about this error, try `rustc --explain E0277`.