blob: b07145f4d38f007887cd9ceb94603bf477f4426d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
error[E0277]: the trait bound `T: Foo` is not satisfied
--> $DIR/wf.rs:5:14
|
LL | trait A<T: Foo> {}
| --- required by this bound in `A`
LL | trait B<T> = A<T>;
| ^^^^ the trait `Foo` is not implemented for `T`
|
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`.
|