]> git.lizzy.rs Git - rust.git/blob - tests/ui/imports/tool-mod-child.stderr
Rollup merge of #106644 - alexcrichton:update-wasi-toolchain, r=cuviper
[rust.git] / tests / ui / imports / tool-mod-child.stderr
1 error[E0433]: failed to resolve: maybe a missing crate `clippy`?
2   --> $DIR/tool-mod-child.rs:2:5
3    |
4 LL | use clippy::a::b;
5    |     ^^^^^^ maybe a missing crate `clippy`?
6    |
7    = help: consider adding `extern crate clippy` to use the `clippy` crate
8
9 error[E0432]: unresolved import `clippy`
10   --> $DIR/tool-mod-child.rs:1:5
11    |
12 LL | use clippy::a;
13    |     ^^^^^^ maybe a missing crate `clippy`?
14    |
15    = help: consider adding `extern crate clippy` to use the `clippy` crate
16
17 error[E0433]: failed to resolve: maybe a missing crate `rustdoc`?
18   --> $DIR/tool-mod-child.rs:5:5
19    |
20 LL | use rustdoc::a::b;
21    |     ^^^^^^^ maybe a missing crate `rustdoc`?
22    |
23    = help: consider adding `extern crate rustdoc` to use the `rustdoc` crate
24
25 error[E0432]: unresolved import `rustdoc`
26   --> $DIR/tool-mod-child.rs:4:5
27    |
28 LL | use rustdoc::a;
29    |     ^^^^^^^ maybe a missing crate `rustdoc`?
30    |
31    = help: consider adding `extern crate rustdoc` to use the `rustdoc` crate
32
33 error: aborting due to 4 previous errors
34
35 Some errors have detailed explanations: E0432, E0433.
36 For more information about an error, try `rustc --explain E0432`.