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

17 lines
182 B
Rust
Raw Normal View History

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