16 lines
722 B
Plaintext
16 lines
722 B
Plaintext
|
error[E0277]: the trait bound `&std::string::String: SomeTrait` is not satisfied
|
||
|
--> $DIR/trait-suggest-deferences-issue-62530.rs:13:26
|
||
|
|
|
||
|
LL | fn takes_type_parameter<T>(_x: T) where T: SomeTrait {}
|
||
|
| --------- required by this bound in `takes_type_parameter`
|
||
|
...
|
||
|
LL | takes_type_parameter(&string); // Error
|
||
|
| ^^^^^^^
|
||
|
| |
|
||
|
| the trait `SomeTrait` is not implemented for `&std::string::String`
|
||
|
| help: consider adding dereference here: `&*string`
|
||
|
|
||
|
error: aborting due to previous error
|
||
|
|
||
|
For more information about this error, try `rustc --explain E0277`.
|