]> git.proxmox.com Git - rustc.git/blob - src/test/ui/associated-types/associated-types-invalid-trait-ref-issue-18865.stderr
New upstream version 1.44.1+dfsg1
[rustc.git] / src / test / ui / associated-types / associated-types-invalid-trait-ref-issue-18865.stderr
1 error[E0277]: the trait bound `T: Foo<usize>` is not satisfied
2 --> $DIR/associated-types-invalid-trait-ref-issue-18865.rs:10:12
3 |
4 LL | let u: <T as Foo<usize>>::Bar = t.get_bar();
5 | ^^^^^^^^^^^^^^^^^^^^^^ the trait `Foo<usize>` is not implemented for `T`
6 |
7 help: consider further restricting this bound
8 |
9 LL | fn f<T:Foo<isize> + Foo<usize>>(t: &T) {
10 | ^^^^^^^^^^^^
11
12 error: aborting due to previous error
13
14 For more information about this error, try `rustc --explain E0277`.