]> git.lizzy.rs Git - rust.git/blob - tests/ui/imports/issue-38293.stderr
Auto merge of #106833 - JohnTitor:rollup-z8398jk, r=JohnTitor
[rust.git] / tests / ui / imports / issue-38293.stderr
1 error[E0432]: unresolved import `foo::f`
2   --> $DIR/issue-38293.rs:6:14
3    |
4 LL | use foo::f::{self};
5    |              ^^^^ no `f` in `foo`
6
7 error[E0423]: expected function, found module `baz`
8   --> $DIR/issue-38293.rs:15:5
9    |
10 LL |     baz();
11    |     ^^^ not a function
12    |
13 help: consider importing this function instead
14    |
15 LL | use bar::baz;
16    |
17
18 error: aborting due to 2 previous errors
19
20 Some errors have detailed explanations: E0423, E0432.
21 For more information about an error, try `rustc --explain E0423`.