mirror of
https://github.com/rust-lang/rust-clippy
synced 2025-01-05 09:48:46 +00:00
17 lines
182 B
Rust
17 lines
182 B
Rust
|
#![rustfmt::skip]
|
||
|
|
||
|
mod a {
|
||
|
mod b {
|
||
|
mod c {
|
||
|
mod d {
|
||
|
mod e {}
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
|
||
|
fn main() {
|
||
|
// this should lint
|
||
|
{{{}}}
|
||
|
}
|