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