blob: 401825367dd9b9a901f208e73413e07edbb92c10 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
|
error[E0412]: cannot find type `Path` in this scope
--> $DIR/use_suggestion_placement.rs:25:16
|
25 | type Bar = Path;
| ^^^^ not found in this scope
help: possible candidate is found in another module, you can import it into scope
|
21 | use std::path::Path;
|
error[E0425]: cannot find value `A` in this scope
--> $DIR/use_suggestion_placement.rs:30:13
|
30 | let _ = A;
| ^ not found in this scope
help: possible candidate is found in another module, you can import it into scope
|
11 | use m::A;
|
error[E0412]: cannot find type `HashMap` in this scope
--> $DIR/use_suggestion_placement.rs:35:23
|
35 | type Dict<K, V> = HashMap<K, V>;
| ^^^^^^^ not found in this scope
help: possible candidates are found in other modules, you can import them into scope
|
11 | use std::collections::HashMap;
|
11 | use std::collections::hash_map::HashMap;
|
error: aborting due to 3 previous errors
|