]> git.proxmox.com Git - rustc.git/blame - src/test/ui/issues/issue-65284-suggest-generic-trait-bound.stderr
New upstream version 1.42.0+dfsg1
[rustc.git] / src / test / ui / issues / issue-65284-suggest-generic-trait-bound.stderr
CommitLineData
dfeec247 1error[E0599]: no method named `foo` found for type parameter `T` in the current scope
e74abb32
XL
2 --> $DIR/issue-65284-suggest-generic-trait-bound.rs:8:7
3 |
4LL | 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
8help: the following trait defines an item `foo`, perhaps you need to restrict type parameter `T` with it:
9 |
10LL | fn do_stuff<T: Foo + Bar>(t : T) {
11 | ^^^^^^^^
12
13error: aborting due to previous error
14
15For more information about this error, try `rustc --explain E0599`.