]> git.proxmox.com Git - rustc.git/blob - src/test/ui/issues/issue-38293.stderr
New upstream version 1.48.0~beta.8+dfsg1
[rustc.git] / src / test / ui / issues / 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`.