rust-clippy/tests/ui-toml/excessive_nesting/auxiliary/mod.rs

16 lines
182 B
Rust

#![rustfmt::skip]
mod a {
mod b {
mod c {
mod d {
mod e {}
}
}
}
}
fn main() {
// this should lint
{{{}}}
}