summaryrefslogtreecommitdiffstats
path: root/tests/ui/derived-errors/issue-31997-1.stderr
blob: 2f4aabf845311168ad1a3bea2e1735e6bf5d6cd7 (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-31997-1.rs:20:19
   |
LL |     let mut map = 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`.