mirror of https://github.com/rust-lang/rust
27 lines
1.2 KiB
Plaintext
27 lines
1.2 KiB
Plaintext
error[E0277]: the trait bound `A<X>: Trait<_, _, _>` is not satisfied
|
|
--> $DIR/incompleteness-unstable-result.rs:65:19
|
|
|
|
|
LL | impls_trait::<A<X>, _, _, _>();
|
|
| ^^^^ the trait `Trait<_, _, _>` is not implemented for `A<X>`, which is required by `A<X>: Trait<_, _, _>`
|
|
|
|
|
= help: the trait `Trait<U, V, D>` is implemented for `A<T>`
|
|
note: required for `A<X>` to implement `Trait<_, _, _>`
|
|
--> $DIR/incompleteness-unstable-result.rs:33:50
|
|
|
|
|
LL | impl<T: ?Sized, U: ?Sized, V: ?Sized, D: ?Sized> Trait<U, V, D> for A<T>
|
|
| ^^^^^^^^^^^^^^ ^^^^
|
|
...
|
|
LL | A<T>: Trait<U, D, V>,
|
|
| -------------- unsatisfied trait bound introduced here
|
|
= note: 8 redundant requirements hidden
|
|
= note: required for `A<X>` to implement `Trait<_, _, _>`
|
|
note: required by a bound in `impls_trait`
|
|
--> $DIR/incompleteness-unstable-result.rs:52:28
|
|
|
|
|
LL | fn impls_trait<T: ?Sized + Trait<U, V, D>, U: ?Sized, V: ?Sized, D: ?Sized>() {}
|
|
| ^^^^^^^^^^^^^^ required by this bound in `impls_trait`
|
|
|
|
error: aborting due to 1 previous error
|
|
|
|
For more information about this error, try `rustc --explain E0277`.
|