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