]> git.lizzy.rs Git - rust.git/blob - src/test/ui/issues/issue-31212.stderr
Auto merge of #53133 - Zoxc:gen-int, r=eddyb
[rust.git] / src / test / ui / issues / issue-31212.stderr
1 error[E0432]: unresolved import `self::*`
2   --> $DIR/issue-31212.rs:15:13
3    |
4 LL |     pub use self::*; //~ ERROR unresolved
5    |             ^^^^^^^ Cannot glob-import a module into itself.
6
7 error[E0425]: cannot find function `f` in module `foo`
8   --> $DIR/issue-31212.rs:19:10
9    |
10 LL |     foo::f(); //~ ERROR cannot find function `f` in module `foo`
11    |          ^ not found in `foo`
12
13 error: aborting due to 2 previous errors
14
15 Some errors occurred: E0425, E0432.
16 For more information about an error, try `rustc --explain E0425`.