2020-01-08 10:05:31 -06:00
|
|
|
error[E0599]: no method named `hello` found for type parameter `impl Foo` in the current scope
|
2019-08-22 12:15:57 -05:00
|
|
|
--> $DIR/impl-trait-with-missing-trait-bounds-in-arg.rs:15:9
|
|
|
|
|
|
2022-06-20 10:43:20 -05:00
|
|
|
LL | fn test(foo: impl Foo) {
|
|
|
|
| -------- method `hello` not found for this type parameter
|
2019-08-22 12:15:57 -05:00
|
|
|
LL | foo.hello();
|
2019-09-06 14:00:07 -05:00
|
|
|
| ^^^^^ method not found in `impl Foo`
|
2019-08-22 12:15:57 -05:00
|
|
|
|
|
|
|
|
= help: items from traits can only be used if the type parameter is bounded by the trait
|
|
|
|
help: the following trait defines an item `hello`, perhaps you need to restrict type parameter `impl Foo` with it:
|
|
|
|
|
|
|
|
|
LL | fn test(foo: impl Foo + Bar) {
|
2022-03-14 09:56:37 -05:00
|
|
|
| +++++
|
2019-08-22 12:15:57 -05:00
|
|
|
|
|
|
|
error: aborting due to previous error
|
|
|
|
|
|
|
|
For more information about this error, try `rustc --explain E0599`.
|