]> git.proxmox.com Git - rustc.git/blobdiff - src/test/ui/traits/alias/wf.stderr
Merge tag 'debian/1.52.1+dfsg1-1_exp2' into proxmox/buster
[rustc.git] / src / test / ui / traits / alias / wf.stderr
diff --git a/src/test/ui/traits/alias/wf.stderr b/src/test/ui/traits/alias/wf.stderr
new file mode 100644 (file)
index 0000000..b07145f
--- /dev/null
@@ -0,0 +1,16 @@
+error[E0277]: the trait bound `T: Foo` is not satisfied
+  --> $DIR/wf.rs:5:14
+   |
+LL | trait A<T: Foo> {}
+   |            --- required by this bound in `A`
+LL | trait B<T> = A<T>;
+   |              ^^^^ the trait `Foo` is not implemented for `T`
+   |
+help: consider restricting type parameter `T`
+   |
+LL | trait B<T: Foo> = A<T>;
+   |          ^^^^^
+
+error: aborting due to previous error
+
+For more information about this error, try `rustc --explain E0277`.