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