]> git.proxmox.com Git - rustc.git/blob - src/test/ui/traits/alias/wf.stderr
Update unsuspicious file list
[rustc.git] / src / test / ui / traits / alias / wf.stderr
1 error[E0277]: the trait bound `T: Foo` is not satisfied
2 --> $DIR/wf.rs:5:14
3 |
4 LL | trait B<T> = A<T>;
5 | ^^^^ the trait `Foo` is not implemented for `T`
6 |
7 note: required by a bound in `A`
8 --> $DIR/wf.rs:4:12
9 |
10 LL | trait A<T: Foo> {}
11 | ^^^ required by this bound in `A`
12 help: consider restricting type parameter `T`
13 |
14 LL | trait B<T: Foo> = A<T>;
15 | +++++
16
17 error: aborting due to previous error
18
19 For more information about this error, try `rustc --explain E0277`.