2019-07-17 16:34:13 -07:00
|
|
|
error[E0599]: no method named `method` found for type `&T` in the current scope
|
|
|
|
--> $DIR/issue-21673.rs:6:7
|
|
|
|
|
|
|
|
|
LL | x.method()
|
2019-09-06 12:00:07 -07:00
|
|
|
| ^^^^^^ method not found in `&T`
|
2019-07-17 16:34:13 -07: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 `method`, perhaps you need to restrict type parameter `T` with it:
|
|
|
|
|
|
|
|
|
LL | fn call_method<T: Foo + std::fmt::Debug>(x: &T) {
|
|
|
|
| ^^^^^^^^
|
|
|
|
|
|
|
|
error[E0599]: no method named `method` found for type `T` in the current scope
|
|
|
|
--> $DIR/issue-21673.rs:10:7
|
|
|
|
|
|
|
|
|
LL | x.method()
|
2019-09-06 12:00:07 -07:00
|
|
|
| ^^^^^^ method not found in `T`
|
2019-07-17 16:34:13 -07: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 `method`, perhaps you need to restrict type parameter `T` with it:
|
|
|
|
|
|
|
|
|
LL | fn call_method_2<T: Foo>(x: T) {
|
|
|
|
| ^^^^^^
|
|
|
|
|
|
|
|
error: aborting due to 2 previous errors
|
|
|
|
|
|
|
|
For more information about this error, try `rustc --explain E0599`.
|