rust/tests/ui/module_inception.rs

39 lines
876 B
Rust
Raw Normal View History

2018-07-28 17:34:52 +02: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 14:58:07 +01:00
mod bar {
//~^ ERROR: module has the same name as its containing module
2016-08-16 14:36:48 +02:00
mod foo {}
}
2016-08-16 14:36:48 +02:00
mod foo {}
}
2017-02-08 14:58:07 +01:00
mod foo {
//~^ ERROR: module has the same name as its containing module
2016-08-16 14:36:48 +02:00
mod bar {}
}
}
// No warning. See <https://github.com/rust-lang/rust-clippy/issues/1220>.
mod bar {
2018-07-28 17:34:52 +02:00
#[allow(clippy::module_inception)]
2018-12-09 23:26:16 +01:00
mod bar {}
}
fn main() {}