]> git.proxmox.com Git - rustc.git/blame - src/test/ui/imports/tool-mod-child.stderr
Update unsuspicious file list
[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`?
923072b8
FG
6 |
7 = help: consider adding `extern crate clippy` to use the `clippy` crate
cdc7bbd5
XL
8
9error[E0432]: unresolved import `clippy`
10 --> $DIR/tool-mod-child.rs:1:5
11 |
12LL | use clippy::a;
13 | ^^^^^^ maybe a missing crate `clippy`?
923072b8
FG
14 |
15 = help: consider adding `extern crate clippy` to use the `clippy` crate
cdc7bbd5
XL
16
17error[E0433]: failed to resolve: maybe a missing crate `rustdoc`?
18 --> $DIR/tool-mod-child.rs:5:5
19 |
20LL | use rustdoc::a::b;
21 | ^^^^^^^ maybe a missing crate `rustdoc`?
923072b8
FG
22 |
23 = help: consider adding `extern crate rustdoc` to use the `rustdoc` crate
cdc7bbd5
XL
24
25error[E0432]: unresolved import `rustdoc`
26 --> $DIR/tool-mod-child.rs:4:5
27 |
28LL | use rustdoc::a;
29 | ^^^^^^^ maybe a missing crate `rustdoc`?
923072b8
FG
30 |
31 = help: consider adding `extern crate rustdoc` to use the `rustdoc` crate
cdc7bbd5
XL
32
33error: aborting due to 4 previous errors
34
35Some errors have detailed explanations: E0432, E0433.
36For more information about an error, try `rustc --explain E0432`.