]> git.lizzy.rs Git - rust.git/blob - tests/ui/resolve/use_suggestion_placement.stderr
Rollup merge of #106779 - RReverser:patch-2, r=Mark-Simulacrum
[rust.git] / tests / ui / resolve / use_suggestion_placement.stderr
1 error[E0412]: cannot find type `Path` in this scope
2   --> $DIR/use_suggestion_placement.rs:18:16
3    |
4 LL |     type Bar = Path;
5    |                ^^^^ not found in this scope
6    |
7 help: consider importing this struct
8    |
9 LL |     use std::path::Path;
10    |
11
12 error[E0425]: cannot find value `A` in this scope
13   --> $DIR/use_suggestion_placement.rs:23:13
14    |
15 LL |     let _ = A;
16    |             ^ not found in this scope
17    |
18 help: consider importing this constant
19    |
20 LL | use m::A;
21    |
22
23 error[E0412]: cannot find type `HashMap` in this scope
24   --> $DIR/use_suggestion_placement.rs:28:23
25    |
26 LL |     type Dict<K, V> = HashMap<K, V>;
27    |                       ^^^^^^^ not found in this scope
28    |
29 help: consider importing this struct
30    |
31 LL | use std::collections::HashMap;
32    |
33
34 error: aborting due to 3 previous errors
35
36 Some errors have detailed explanations: E0412, E0425.
37 For more information about an error, try `rustc --explain E0412`.