mirror of https://github.com/rust-lang/rust
36 lines
664 B
Rust
36 lines
664 B
Rust
//@ run-rustfix
|
|
//@ check-pass
|
|
|
|
#![warn(unused_imports)]
|
|
|
|
pub mod nested {
|
|
pub struct A;
|
|
pub struct B;
|
|
pub struct C;
|
|
pub struct D;
|
|
pub mod even_more {
|
|
pub struct E;
|
|
pub struct F;
|
|
pub struct G;
|
|
}
|
|
pub mod another {
|
|
pub struct H;
|
|
pub struct I;
|
|
}
|
|
}
|
|
|
|
use nested::B;
|
|
//~^ WARN unused import
|
|
|
|
use nested::even_more::F;
|
|
//~^^^^^^^ WARN unused import
|
|
|
|
// Note that the following fix should result in `::{self}`, not `::self`. The latter is invalid
|
|
// Rust syntax, so the braces should not be removed.
|
|
use nested::another::{self};
|
|
//~^ WARN unused import
|
|
|
|
fn main() {
|
|
let _ = (B, F, another::I);
|
|
}
|