-
Notifications
You must be signed in to change notification settings - Fork 12.8k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
3 changed files
with
37 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
use clippy::a; //~ ERROR unresolved import `clippy` | ||
use clippy::a::b; //~ ERROR failed to resolve: maybe a missing crate `clippy`? | ||
|
||
use rustdoc::a; //~ ERROR unresolved import `rustdoc` | ||
use rustdoc::a::b; //~ ERROR failed to resolve: maybe a missing crate `rustdoc`? | ||
|
||
fn main() {} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,28 @@ | ||
error[E0433]: failed to resolve: maybe a missing crate `clippy`? | ||
--> $DIR/tool-mod-child.rs:2:5 | ||
| | ||
LL | use clippy::a::b; | ||
| ^^^^^^ maybe a missing crate `clippy`? | ||
|
||
error[E0432]: unresolved import `clippy` | ||
--> $DIR/tool-mod-child.rs:1:5 | ||
| | ||
LL | use clippy::a; | ||
| ^^^^^^ maybe a missing crate `clippy`? | ||
|
||
error[E0433]: failed to resolve: maybe a missing crate `rustdoc`? | ||
--> $DIR/tool-mod-child.rs:5:5 | ||
| | ||
LL | use rustdoc::a::b; | ||
| ^^^^^^^ maybe a missing crate `rustdoc`? | ||
|
||
error[E0432]: unresolved import `rustdoc` | ||
--> $DIR/tool-mod-child.rs:4:5 | ||
| | ||
LL | use rustdoc::a; | ||
| ^^^^^^^ maybe a missing crate `rustdoc`? | ||
|
||
error: aborting due to 4 previous errors | ||
|
||
Some errors have detailed explanations: E0432, E0433. | ||
For more information about an error, try `rustc --explain E0432`. |