blob: d6d5ce4d1a7d2b34c5249323e91e2d9123fd338a [file] [log] [blame]
error[E0277]: the trait bound `Bar: Foo<usize>` is not satisfied
--> $DIR/issue-21659-show-relevant-trait-impls-2.rs:28:8
|
LL | f1.foo(1usize);
| ^^^ the trait `Foo<usize>` is not implemented for `Bar`
|
= help: the following implementations were found:
<Bar as Foo<i16>>
<Bar as Foo<i32>>
<Bar as Foo<i8>>
<Bar as Foo<u16>>
and 2 others
error: aborting due to previous error
For more information about this error, try `rustc --explain E0277`.