]> git.lizzy.rs Git - rust.git/blob - src/test/ui/impl-trait/issues/issue-21659-show-relevant-trait-impls-3.stderr
666418f6ee2c15f9945764dd4425108be480dc49
[rust.git] / src / test / ui / impl-trait / issues / issue-21659-show-relevant-trait-impls-3.stderr
1 error[E0599]: no method named `foo` found for type `Bar` in the current scope
2   --> $DIR/issue-21659-show-relevant-trait-impls-3.rs:20:8
3    |
4 LL | struct Bar;
5    | ----------- method `foo` not found for this
6 ...
7 LL |     f1.foo(1usize);
8    |        ^^^
9    |
10    = help: items from traits can only be used if the trait is implemented and in scope
11    = note: the following trait defines an item `foo`, perhaps you need to implement it:
12            candidate #1: `Foo`
13
14 error: aborting due to previous error
15
16 For more information about this error, try `rustc --explain E0599`.