rust/tests/ui/imports/tool-mod-child.rs

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

8 lines
321 B
Rust
Raw Permalink Normal View History

2021-03-21 03:00:25 +00:00
use clippy::a; //~ ERROR unresolved import `clippy`
use clippy::a::b; //~ ERROR failed to resolve: use of unresolved module or unlinked crate `clippy`
2021-03-21 03:00:25 +00:00
use rustdoc::a; //~ ERROR unresolved import `rustdoc`
use rustdoc::a::b; //~ ERROR failed to resolve: use of unresolved module or unlinked crate `rustdoc`
2021-03-21 03:00:25 +00:00
fn main() {}