]> git.proxmox.com Git - rustc.git/blame - src/test/ui/imports/issue-38293.stderr
New upstream version 1.66.0+dfsg1
[rustc.git] / src / test / ui / imports / issue-38293.stderr
CommitLineData
8faf50e0 1error[E0432]: unresolved import `foo::f`
0731742a 2 --> $DIR/issue-38293.rs:6:14
8faf50e0 3 |
532ac7d7 4LL | use foo::f::{self};
8faf50e0
XL
5 | ^^^^ no `f` in `foo`
6
7error[E0423]: expected function, found module `baz`
0731742a 8 --> $DIR/issue-38293.rs:15:5
8faf50e0 9 |
532ac7d7 10LL | baz();
8faf50e0 11 | ^^^ not a function
e74abb32 12 |
f9f354fc 13help: consider importing this function instead
8faf50e0
XL
14 |
15LL | use bar::baz;
16 |
17
18error: aborting due to 2 previous errors
19
48663c56 20Some errors have detailed explanations: E0423, E0432.
8faf50e0 21For more information about an error, try `rustc --explain E0423`.