]> git.lizzy.rs Git - rust.git/blob - src/test/ui/suggestions/impl-trait-with-missing-trait-bounds-in-arg.stderr
Rollup merge of #90420 - GuillaumeGomez:rustdoc-internals-feature, r=camelid
[rust.git] / src / test / ui / suggestions / impl-trait-with-missing-trait-bounds-in-arg.stderr
1 error[E0599]: no method named `hello` found for type parameter `impl Foo` in the current scope
2   --> $DIR/impl-trait-with-missing-trait-bounds-in-arg.rs:15:9
3    |
4 LL |     foo.hello();
5    |         ^^^^^ method not found in `impl Foo`
6    |
7    = help: items from traits can only be used if the type parameter is bounded by the trait
8 help: the following trait defines an item `hello`, perhaps you need to restrict type parameter `impl Foo` with it:
9    |
10 LL | fn test(foo: impl Foo + Bar) {
11    |              ~~~~~~~~~~~~~~
12
13 error: aborting due to previous error
14
15 For more information about this error, try `rustc --explain E0599`.