about summary refs log tree commit diff
path: root/tests/ui/underscore-imports/issue-110164.ed2015.stderr
blob: f34b5ab5dde7412fa6ec1ac8dc3152d0dc6a0a12 (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
35
36
37
38
39
error: expected identifier, found reserved identifier `_`
  --> $DIR/issue-110164.rs:8:5
   |
LL | use _::a;
   |     ^ expected identifier, found reserved identifier

error: expected identifier, found reserved identifier `_`
  --> $DIR/issue-110164.rs:10:5
   |
LL | use _::*;
   |     ^ expected identifier, found reserved identifier

error: expected identifier, found reserved identifier `_`
  --> $DIR/issue-110164.rs:14:9
   |
LL |     use _::a;
   |         ^ expected identifier, found reserved identifier

error: expected identifier, found reserved identifier `_`
  --> $DIR/issue-110164.rs:16:9
   |
LL |     use _::*;
   |         ^ expected identifier, found reserved identifier

error[E0432]: unresolved import `self::*`
  --> $DIR/issue-110164.rs:4:5
   |
LL | use self::*;
   |     ^^^^^^^ cannot glob-import a module into itself

error[E0432]: unresolved import `crate::*`
  --> $DIR/issue-110164.rs:6:5
   |
LL | use crate::*;
   |     ^^^^^^^^ cannot glob-import a module into itself

error: aborting due to 6 previous errors

For more information about this error, try `rustc --explain E0432`.