|
| 1 | +error: expected identifier, found reserved identifier `_` |
| 2 | + --> $DIR/issue-110164.rs:5:5 |
| 3 | + | |
| 4 | +LL | use _::a; |
| 5 | + | ^ expected identifier, found reserved identifier |
| 6 | + |
| 7 | +error: expected identifier, found reserved identifier `_` |
| 8 | + --> $DIR/issue-110164.rs:8:5 |
| 9 | + | |
| 10 | +LL | use _::*; |
| 11 | + | ^ expected identifier, found reserved identifier |
| 12 | + |
| 13 | +error: expected identifier, found reserved identifier `_` |
| 14 | + --> $DIR/issue-110164.rs:13:9 |
| 15 | + | |
| 16 | +LL | use _::a; |
| 17 | + | ^ expected identifier, found reserved identifier |
| 18 | + |
| 19 | +error: expected identifier, found reserved identifier `_` |
| 20 | + --> $DIR/issue-110164.rs:16:9 |
| 21 | + | |
| 22 | +LL | use _::*; |
| 23 | + | ^ expected identifier, found reserved identifier |
| 24 | + |
| 25 | +error[E0432]: unresolved import `self::*` |
| 26 | + --> $DIR/issue-110164.rs:1:5 |
| 27 | + | |
| 28 | +LL | use self::*; |
| 29 | + | ^^^^^^^ cannot glob-import a module into itself |
| 30 | + |
| 31 | +error[E0432]: unresolved import `crate::*` |
| 32 | + --> $DIR/issue-110164.rs:3:5 |
| 33 | + | |
| 34 | +LL | use crate::*; |
| 35 | + | ^^^^^^^^ cannot glob-import a module into itself |
| 36 | + |
| 37 | +error[E0432]: unresolved import `_` |
| 38 | + --> $DIR/issue-110164.rs:8:5 |
| 39 | + | |
| 40 | +LL | use _::*; |
| 41 | + | ^ maybe a missing crate `_`? |
| 42 | + | |
| 43 | + = help: consider adding `extern crate _` to use the `_` crate |
| 44 | + |
| 45 | +error[E0432]: unresolved import `_` |
| 46 | + --> $DIR/issue-110164.rs:5:5 |
| 47 | + | |
| 48 | +LL | use _::a; |
| 49 | + | ^ maybe a missing crate `_`? |
| 50 | + | |
| 51 | + = help: consider adding `extern crate _` to use the `_` crate |
| 52 | + |
| 53 | +error[E0432]: unresolved import `_` |
| 54 | + --> $DIR/issue-110164.rs:13:9 |
| 55 | + | |
| 56 | +LL | use _::a; |
| 57 | + | ^ maybe a missing crate `_`? |
| 58 | + | |
| 59 | + = help: consider adding `extern crate _` to use the `_` crate |
| 60 | + |
| 61 | +error[E0432]: unresolved import `_` |
| 62 | + --> $DIR/issue-110164.rs:16:9 |
| 63 | + | |
| 64 | +LL | use _::*; |
| 65 | + | ^ maybe a missing crate `_`? |
| 66 | + | |
| 67 | + = help: consider adding `extern crate _` to use the `_` crate |
| 68 | + |
| 69 | +error: aborting due to 10 previous errors |
| 70 | + |
| 71 | +For more information about this error, try `rustc --explain E0432`. |
0 commit comments