blob: ca6d05847166788d7c2357caad07f1746aefe034 [file] [log] [blame]
error[E0277]: the trait bound `T: Foo` is not satisfied
--> $DIR/trait-alias-wf.rs:5:1
|
LL | trait A<T: Foo> {}
| --------------- required by `A`
LL | trait B<T> = A<T>;
| ^^^^^^^^^^^^^^^^^^ the trait `Foo` is not implemented for `T`
|
= help: consider adding a `where T: Foo` bound
error: aborting due to previous error
For more information about this error, try `rustc --explain E0277`.