summaryrefslogtreecommitdiffstats
path: root/tests/ui/resolve/issue-109250.stderr
blob: d5b8c08ced7d7d63874322b85d06e2fd46086d8a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
error[E0433]: failed to resolve: use of undeclared type `HashMap`
  --> $DIR/issue-109250.rs:2:5
   |
LL |     HashMap::new;
   |     ^^^^^^^ use of undeclared type `HashMap`
   |
help: consider importing this struct
   |
LL + use std::collections::HashMap;
   |

error: aborting due to previous error

For more information about this error, try `rustc --explain E0433`.