]> git.lizzy.rs Git - rust.git/blob - tests/ui/imports/issue-8208.stderr
Rollup merge of #106958 - jyn514:labels, r=m-ou-se
[rust.git] / tests / ui / imports / issue-8208.stderr
1 error[E0432]: unresolved import `self::*`
2   --> $DIR/issue-8208.rs:1:5
3    |
4 LL | use self::*;
5    |     ^^^^^^^ cannot glob-import a module into itself
6
7 error[E0432]: unresolved import `foo::*`
8   --> $DIR/issue-8208.rs:5:9
9    |
10 LL |     use foo::*;
11    |         ^^^^^^ cannot glob-import a module into itself
12
13 error[E0432]: unresolved import `super::bar::*`
14   --> $DIR/issue-8208.rs:9:13
15    |
16 LL |         use super::bar::*;
17    |             ^^^^^^^^^^^^^ cannot glob-import a module into itself
18
19 error: aborting due to 3 previous errors
20
21 For more information about this error, try `rustc --explain E0432`.