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