]> git.proxmox.com Git - rustc.git/blame - src/test/ui/imports/tool-mod-child.stderr
New upstream version 1.62.1+dfsg1
[rustc.git] / src / test / ui / imports / tool-mod-child.stderr
CommitLineData
cdc7bbd5
XL
1error[E0433]: failed to resolve: maybe a missing crate `clippy`?
2 --> $DIR/tool-mod-child.rs:2:5
3 |
4LL | use clippy::a::b;
5 | ^^^^^^ maybe a missing crate `clippy`?
6
7error[E0432]: unresolved import `clippy`
8 --> $DIR/tool-mod-child.rs:1:5
9 |
10LL | use clippy::a;
11 | ^^^^^^ maybe a missing crate `clippy`?
12
13error[E0433]: failed to resolve: maybe a missing crate `rustdoc`?
14 --> $DIR/tool-mod-child.rs:5:5
15 |
16LL | use rustdoc::a::b;
17 | ^^^^^^^ maybe a missing crate `rustdoc`?
18
19error[E0432]: unresolved import `rustdoc`
20 --> $DIR/tool-mod-child.rs:4:5
21 |
22LL | use rustdoc::a;
23 | ^^^^^^^ maybe a missing crate `rustdoc`?
24
25error: aborting due to 4 previous errors
26
27Some errors have detailed explanations: E0432, E0433.
28For more information about an error, try `rustc --explain E0432`.