2021-03-20 20:00:25 -07:00
|
|
|
use clippy::a; //~ ERROR unresolved import `clippy`
|
2024-07-23 19:43:46 +00:00
|
|
|
use clippy::a::b; //~ ERROR failed to resolve: you might be missing crate `clippy`
|
2021-03-20 20:00:25 -07:00
|
|
|
|
|
|
|
use rustdoc::a; //~ ERROR unresolved import `rustdoc`
|
2024-07-23 19:43:46 +00:00
|
|
|
use rustdoc::a::b; //~ ERROR failed to resolve: you might be missing crate `rustdoc`
|
2021-03-20 20:00:25 -07:00
|
|
|
|
|
|
|
fn main() {}
|