rust/tests/ui/traits/alias/wf.stderr

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

20 lines
520 B
Plaintext
Raw Normal View History

error[E0277]: the trait bound `T: Foo` is not satisfied
2021-02-08 16:15:45 -06:00
--> $DIR/wf.rs:5:14
|
2019-03-09 06:03:44 -06:00
LL | trait B<T> = A<T>;
| ^^^^ the trait `Foo` is not implemented for `T`
|
note: required by a bound in `A`
--> $DIR/wf.rs:4:12
|
LL | trait A<T: Foo> {}
| ^^^ required by this bound in `A`
help: consider restricting type parameter `T`
|
LL | trait B<T: Foo> = A<T>;
| +++++
error: aborting due to previous error
For more information about this error, try `rustc --explain E0277`.