]> git.lizzy.rs Git - rust.git/blob - src/test/ui/associated-types/associated-types-invalid-trait-ref-issue-18865.stderr
Rollup merge of #76468 - SNCPlay42:lifetime-names, r=Mark-Simulacrum
[rust.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`.