rust-clippy/tests/ui/module_inception.rs

39 lines
876 B
Rust
Raw Normal View History

2018-07-28 15:34:52 +00:00
#![warn(clippy::module_inception)]
pub mod foo2 {
pub mod bar2 {
pub mod bar2 {
//~^ ERROR: module has the same name as its containing module
//~| NOTE: `-D clippy::module-inception` implied by `-D warnings`
pub mod foo2 {}
}
pub mod foo2 {}
}
pub mod foo2 {
//~^ ERROR: module has the same name as its containing module
pub mod bar2 {}
}
}
mod foo {
mod bar {
2017-02-08 13:58:07 +00:00
mod bar {
//~^ ERROR: module has the same name as its containing module
2016-08-16 12:36:48 +00:00
mod foo {}
}
2016-08-16 12:36:48 +00:00
mod foo {}
}
2017-02-08 13:58:07 +00:00
mod foo {
//~^ ERROR: module has the same name as its containing module
2016-08-16 12:36:48 +00:00
mod bar {}
}
}
// No warning. See <https://github.com/rust-lang/rust-clippy/issues/1220>.
mod bar {
2018-07-28 15:34:52 +00:00
#[allow(clippy::module_inception)]
2018-12-09 22:26:16 +00:00
mod bar {}
}
fn main() {}