rust/src/test/ui/traits/trait-alias/trait-alias-wf.stderr

18 lines
497 B
Plaintext
Raw Normal View History

error[E0277]: the trait bound `T: Foo` is not satisfied
--> $DIR/trait-alias-wf.rs:5:14
|
LL | trait A<T: Foo> {}
| --------------- required by `A`
2019-03-09 06:03:44 -06:00
LL | trait B<T> = A<T>;
| ^^^^ 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>;
| ^
error: aborting due to previous error
For more information about this error, try `rustc --explain E0277`.