summaryrefslogtreecommitdiffstats
path: root/tests/ui/resolve/issue-109250.stderr
blob: ad6cc6986229ab26efc6babc71063f2e20197ba0 (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 1 previous error

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