2018-11-01 13:17:58 -05:00
|
|
|
error[E0277]: the trait bound `T: Foo` is not satisfied
|
2020-01-29 18:55:37 -06:00
|
|
|
--> $DIR/trait-alias-wf.rs:5:14
|
2018-11-01 13:17:58 -05:00
|
|
|
|
|
2019-08-24 16:44:43 -05:00
|
|
|
LL | trait A<T: Foo> {}
|
|
|
|
| --------------- required by `A`
|
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`
|
|
|
|
|
|
|
|
|
help: consider restricting this type parameter with `T: Foo`
|
|
|
|
--> $DIR/trait-alias-wf.rs:5:9
|
|
|
|
|
|
|
|
|
LL | trait B<T> = A<T>;
|
|
|
|
| ^
|
2018-11-01 13:17:58 -05:00
|
|
|
|
|
|
|
error: aborting due to previous error
|
|
|
|
|
|
|
|
For more information about this error, try `rustc --explain E0277`.
|