]> git.proxmox.com Git - rustc.git/blobdiff - src/test/ui/traits/trait-alias/trait-alias-wf.stderr
New upstream version 1.44.1+dfsg1
[rustc.git] / src / test / ui / traits / trait-alias / trait-alias-wf.stderr
index e7ed16a02a3f0127a01a917ab789625922c6c6ff..e0df76381e0882377ee68ecc5fc363378f8505b5 100644 (file)
@@ -2,15 +2,14 @@ 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`
+   |            --- required by this bound in `A`
 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
+help: consider restricting type parameter `T`
    |
-LL | trait B<T> = A<T>;
-   |         ^
+LL | trait B<T: Foo> = A<T>;
+   |          ^^^^^
 
 error: aborting due to previous error