]> git.lizzy.rs Git - rust.git/blob - src/test/ui/unsized/unsized-trait-impl-trait-arg.stderr
Auto merge of #84589 - In-line:zircon-thread-name, r=JohnTitor
[rust.git] / src / test / ui / unsized / unsized-trait-impl-trait-arg.stderr
1 error[E0277]: the size for values of type `X` cannot be known at compilation time
2   --> $DIR/unsized-trait-impl-trait-arg.rs:8:17
3    |
4 LL | trait T2<Z> {
5    |          - required by this bound in `T2`
6 ...
7 LL | impl<X: ?Sized> T2<X> for S4<X> {
8    |      -          ^^^^^ doesn't have a size known at compile-time
9    |      |
10    |      this type parameter needs to be `std::marker::Sized`
11    |
12 help: consider relaxing the implicit `Sized` restriction
13    |
14 LL | trait T2<Z: ?Sized> {
15    |           ^^^^^^^^
16
17 error: aborting due to previous error
18
19 For more information about this error, try `rustc --explain E0277`.