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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
|
error: expected identifier, found reserved identifier `_`
--> $DIR/multiple-uses.rs:4:9
|
LL | pub use _::{a, b};
| ^ expected identifier, found reserved identifier
error: expected identifier, found reserved identifier `_`
--> $DIR/multiple-uses.rs:6:18
|
LL | pub use std::{a, _};
| ^ expected identifier, found reserved identifier
error: expected identifier, found reserved identifier `_`
--> $DIR/multiple-uses.rs:9:18
|
LL | pub use std::{b, _, c};
| ^ expected identifier, found reserved identifier
error: expected identifier, found reserved identifier `_`
--> $DIR/multiple-uses.rs:12:15
|
LL | pub use std::{_, d};
| ^ expected identifier, found reserved identifier
error[E0432]: unresolved import `std::a`
--> $DIR/multiple-uses.rs:6:15
|
LL | pub use std::{a, _};
| ^ no `a` in the root
error[E0432]: unresolved imports `std::b`, `std::c`
--> $DIR/multiple-uses.rs:9:15
|
LL | pub use std::{b, _, c};
| ^ ^
| | |
| | no `c` in the root
| | help: a similar name exists in the module: `rc`
| no `b` in the root
error[E0432]: unresolved import `std::d`
--> $DIR/multiple-uses.rs:12:18
|
LL | pub use std::{_, d};
| ^ no `d` in the root
error: aborting due to 7 previous errors
For more information about this error, try `rustc --explain E0432`.
|