]> git.lizzy.rs Git - rust.git/blob - src/test/ui/issues/issue-65284-suggest-generic-trait-bound.stderr
Rollup merge of #65389 - ecstatic-morse:zero-sized-array-no-drop, r=eddyb
[rust.git] / src / test / ui / issues / issue-65284-suggest-generic-trait-bound.stderr
1 error[E0599]: no method named `foo` found for type `T` in the current scope
2   --> $DIR/issue-65284-suggest-generic-trait-bound.rs:8:7
3    |
4 LL |     t.foo()
5    |       ^^^ method not found in `T`
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 `foo`, perhaps you need to restrict type parameter `T` with it:
9    |
10 LL | fn do_stuff<T: Foo + Bar>(t : T) {
11    |             ^^^^^^^^
12
13 error: aborting due to previous error
14
15 For more information about this error, try `rustc --explain E0599`.