summaryrefslogtreecommitdiffstats
path: root/src/test/ui/did_you_mean/issue-21659-show-relevant-trait-impls-2.stderr
blob: bb175367e1f9e0772ad8d07bfe4520285a1a3733 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
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 other types implement trait `Foo<A>`:
             <Bar as Foo<i16>>
             <Bar as Foo<i32>>
             <Bar as Foo<i8>>
             <Bar as Foo<u16>>
             <Bar as Foo<u32>>
             <Bar as Foo<u8>>

error: aborting due to previous error

For more information about this error, try `rustc --explain E0277`.