]> git.lizzy.rs Git - rust.git/blob - tests/ui/suggestions/impl-trait-with-missing-trait-bounds-in-arg.stderr
Rollup merge of #106670 - albertlarsan68:check-docs-in-pr-ci, r=Mark-Simulacrum
[rust.git] / tests / 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 | fn test(foo: impl Foo) {
5    |              -------- method `hello` not found for this type parameter
6 LL |     foo.hello();
7    |         ^^^^^ method not found in `impl Foo`
8    |
9    = help: items from traits can only be used if the type parameter is bounded by the trait
10 help: the following trait defines an item `hello`, perhaps you need to restrict type parameter `impl Foo` with it:
11    |
12 LL | fn test(foo: impl Foo + Bar) {
13    |                       +++++
14
15 error: aborting due to previous error
16
17 For more information about this error, try `rustc --explain E0599`.