]> git.proxmox.com Git - rustc.git/blame - src/test/ui/inference/ambiguous_type_parameter.stderr
New upstream version 1.67.1+dfsg1
[rustc.git] / src / test / ui / inference / ambiguous_type_parameter.stderr
CommitLineData
923072b8
FG
1error[E0282]: type annotations needed
2 --> $DIR/ambiguous_type_parameter.rs:16:19
3 |
4LL | InMemoryStore.get_raw(&String::default());
064997fb
FG
5 | ^^^^^^^
6 |
7help: try using a fully qualified path to specify the expected types
8 |
9LL | <InMemoryStore as Store<String, HashMap<K, String>>>::get_raw(&InMemoryStore, &String::default());
10 | +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ ~
923072b8
FG
11
12error: aborting due to previous error
13
14For more information about this error, try `rustc --explain E0282`.