]> git.lizzy.rs Git - rust.git/blob - src/test/ui/associated-types/associated-types-invalid-trait-ref-issue-18865.stderr
Rollup merge of #53317 - estebank:abolish-ice, r=oli-obk
[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:20: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 adding a `where T: Foo<usize>` bound
8
9 error: aborting due to previous error
10
11 For more information about this error, try `rustc --explain E0277`.