blob: 3b46a24e010880091f94830520403154ace44419 [file] [edit]
error[E0283]: type annotations needed
--> $DIR/issue-71732.rs:18:10
|
LL | .get(&"key".into())
| ^^^ ------------- type must be known at this point
| |
| cannot infer type of the type parameter `Q` declared on the method `get`
|
= note: multiple `impl`s satisfying `String: Borrow<_>` found in the following crates: `alloc`, `core`:
- impl Borrow<str> for String;
- impl<T> Borrow<T> for T
where T: ?Sized;
note: required by a bound in `HashMap::<K, V, S, A>::get`
--> $SRC_DIR/std/src/collections/hash/map.rs:LL:COL
help: consider specifying a concrete type for the type parameter `Q`
|
LL | .get::</* Type */>(&"key".into())
| ++++++++++++++
error: aborting due to 1 previous error
For more information about this error, try `rustc --explain E0283`.