]> git.proxmox.com Git - rustc.git/blame - src/test/ui/resolve/use_suggestion.stderr
New upstream version 1.46.0~beta.2+dfsg1
[rustc.git] / src / test / ui / resolve / use_suggestion.stderr
CommitLineData
f035d41b
XL
1error[E0433]: failed to resolve: use of undeclared type or module `GooMap`
2 --> $DIR/use_suggestion.rs:3:14
3 |
4LL | let x2 = GooMap::new();
5 | ^^^^^^ use of undeclared type or module `GooMap`
6
7error[E0433]: failed to resolve: use of undeclared type or module `HashMap`
8 --> $DIR/use_suggestion.rs:2:14
9 |
10LL | let x1 = HashMap::new();
11 | ^^^^^^^ not found in this scope
12 |
13help: consider importing this struct
14 |
15LL | use std::collections::HashMap;
16 |
17
18error[E0412]: cannot find type `HashMap` in this scope
19 --> $DIR/use_suggestion.rs:5:13
20 |
21LL | let y1: HashMap;
22 | ^^^^^^^ not found in this scope
23 |
24help: consider importing this struct
25 |
26LL | use std::collections::HashMap;
27 |
28
29error[E0412]: cannot find type `GooMap` in this scope
30 --> $DIR/use_suggestion.rs:6:13
31 |
32LL | let y2: GooMap;
33 | ^^^^^^ not found in this scope
34
35error: aborting due to 4 previous errors
36
37Some errors have detailed explanations: E0412, E0433.
38For more information about an error, try `rustc --explain E0412`.