about summary refs log tree commit diff
path: root/tests/ui/imports/tool-mod-child.rs
blob: 38bcdfb02494162777a50224b318b8e7ad048278 (plain)
1
2
3
4
5
6
7
use clippy::a; //~ ERROR unresolved import `clippy`
use clippy::a::b; //~ ERROR failed to resolve: use of unresolved module or unlinked crate `clippy`

use rustdoc::a; //~ ERROR unresolved import `rustdoc`
use rustdoc::a::b; //~ ERROR failed to resolve: use of unresolved module or unlinked crate `rustdoc`

fn main() {}