mirror of
https://github.com/rust-lang/rust-clippy
synced 2024-11-15 09:27:25 +00:00
b303e2053c
allow disabling module inception on private modules
36 lines
852 B
Text
36 lines
852 B
Text
error: module has the same name as its containing module
|
|
--> $DIR/module_inception.rs:5:9
|
|
|
|
|
LL | / pub mod bar2 {
|
|
LL | | pub mod foo2 {}
|
|
LL | | }
|
|
| |_________^
|
|
|
|
|
= note: `-D clippy::module-inception` implied by `-D warnings`
|
|
|
|
error: module has the same name as its containing module
|
|
--> $DIR/module_inception.rs:10:5
|
|
|
|
|
LL | / pub mod foo2 {
|
|
LL | | pub mod bar2 {}
|
|
LL | | }
|
|
| |_____^
|
|
|
|
error: module has the same name as its containing module
|
|
--> $DIR/module_inception.rs:17:9
|
|
|
|
|
LL | / mod bar {
|
|
LL | | mod foo {}
|
|
LL | | }
|
|
| |_________^
|
|
|
|
error: module has the same name as its containing module
|
|
--> $DIR/module_inception.rs:22:5
|
|
|
|
|
LL | / mod foo {
|
|
LL | | mod bar {}
|
|
LL | | }
|
|
| |_____^
|
|
|
|
error: aborting due to 4 previous errors
|
|
|