]> git.lizzy.rs Git - rust.git/blob - src/test/ui/impl-trait/issues/issue-21659-show-relevant-trait-impls-3.stderr
Merge commit '266e96785ab71834b917bf474f130a6d8fdecd4b' into sync_cg_clif-2022-10-23
[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 struct `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 struct
6 ...
7 LL |     f1.foo(1usize);
8    |        ^^^ method not found in `Bar`
9    |
10    = help: items from traits can only be used if the trait is implemented and in scope
11 note: `Foo` defines an item `foo`, perhaps you need to implement it
12   --> $DIR/issue-21659-show-relevant-trait-impls-3.rs:1:1
13    |
14 LL | trait Foo<A> {
15    | ^^^^^^^^^^^^
16
17 error: aborting due to previous error
18
19 For more information about this error, try `rustc --explain E0599`.