]> git.proxmox.com Git - rustc.git/blame - src/test/ui/impl-trait/issues/issue-21659-show-relevant-trait-impls-3.stderr
New upstream version 1.43.0+dfsg1
[rustc.git] / src / test / ui / impl-trait / issues / issue-21659-show-relevant-trait-impls-3.stderr
CommitLineData
dfeec247 1error[E0599]: no method named `foo` found for struct `Bar` in the current scope
0731742a 2 --> $DIR/issue-21659-show-relevant-trait-impls-3.rs:20:8
7cac9316 3 |
0531ce1d 4LL | struct Bar;
ff7c6d11
XL
5 | ----------- method `foo` not found for this
6...
0531ce1d 7LL | f1.foo(1usize);
e1599b0c 8 | ^^^ method not found in `Bar`
7cac9316
XL
9 |
10 = help: items from traits can only be used if the trait is implemented and in scope
74b04a01
XL
11note: `Foo` defines an item `foo`, perhaps you need to implement it
12 --> $DIR/issue-21659-show-relevant-trait-impls-3.rs:1:1
13 |
14LL | trait Foo<A> {
15 | ^^^^^^^^^^^^
7cac9316 16
041b39d2 17error: aborting due to previous error
7cac9316 18
0531ce1d 19For more information about this error, try `rustc --explain E0599`.