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