mirror of
https://github.com/rust-lang/rust-clippy
synced 2024-11-15 09:27:25 +00:00
b303e2053c
allow disabling module inception on private modules
33 lines
510 B
Rust
33 lines
510 B
Rust
#![warn(clippy::module_inception)]
|
|
|
|
pub mod foo2 {
|
|
pub mod bar2 {
|
|
pub mod bar2 {
|
|
pub mod foo2 {}
|
|
}
|
|
pub mod foo2 {}
|
|
}
|
|
pub mod foo2 {
|
|
pub mod bar2 {}
|
|
}
|
|
}
|
|
|
|
mod foo {
|
|
mod bar {
|
|
mod bar {
|
|
mod foo {}
|
|
}
|
|
mod foo {}
|
|
}
|
|
mod foo {
|
|
mod bar {}
|
|
}
|
|
}
|
|
|
|
// No warning. See <https://github.com/rust-lang/rust-clippy/issues/1220>.
|
|
mod bar {
|
|
#[allow(clippy::module_inception)]
|
|
mod bar {}
|
|
}
|
|
|
|
fn main() {}
|