rust/src/test/ui/did_you_mean/issue-21659-show-relevant-trait-impls-1.stderr

14 lines
461 B
Plaintext
Raw Normal View History

error[E0277]: the trait bound `Bar: Foo<usize>` is not satisfied
2018-12-25 09:56:47 -06:00
--> $DIR/issue-21659-show-relevant-trait-impls-1.rs:24:8
|
2018-02-22 18:42:32 -06:00
LL | f1.foo(1usize);
| ^^^ the trait `Foo<usize>` is not implemented for `Bar`
|
= help: the following other types implement trait `Foo<i32>`:
<Bar as Foo<i32>>
<Bar as Foo<u8>>
error: aborting due to previous error
2018-03-03 08:59:40 -06:00
For more information about this error, try `rustc --explain E0277`.