]> git.proxmox.com Git - rustc.git/blame - src/test/ui/traits/alias/wf.stderr
New upstream version 1.67.1+dfsg1
[rustc.git] / src / test / ui / traits / alias / wf.stderr
CommitLineData
a1dfa0c6 1error[E0277]: the trait bound `T: Foo` is not satisfied
6a06907d 2 --> $DIR/wf.rs:5:14
a1dfa0c6 3 |
532ac7d7 4LL | trait B<T> = A<T>;
74b04a01
XL
5 | ^^^^ the trait `Foo` is not implemented for `T`
6 |
94222f64
XL
7note: required by a bound in `A`
8 --> $DIR/wf.rs:4:12
9 |
10LL | trait A<T: Foo> {}
11 | ^^^ required by this bound in `A`
ba9703b0 12help: consider restricting type parameter `T`
74b04a01 13 |
ba9703b0 14LL | trait B<T: Foo> = A<T>;
94222f64 15 | +++++
a1dfa0c6
XL
16
17error: aborting due to previous error
18
19For more information about this error, try `rustc --explain E0277`.