mirror of
https://github.com/rust-lang/rust-clippy
synced 2024-11-10 15:14:29 +00:00
42 lines
981 B
Text
42 lines
981 B
Text
error: module has the same name as its containing module
|
|
--> tests/ui/module_inception.rs:5:9
|
|
|
|
|
LL | / pub mod bar2 {
|
|
LL | |
|
|
LL | |
|
|
LL | | pub mod foo2 {}
|
|
LL | | }
|
|
| |_________^
|
|
|
|
|
= note: `-D clippy::module-inception` implied by `-D warnings`
|
|
= help: to override `-D warnings` add `#[allow(clippy::module_inception)]`
|
|
|
|
error: module has the same name as its containing module
|
|
--> tests/ui/module_inception.rs:12:5
|
|
|
|
|
LL | / pub mod foo2 {
|
|
LL | |
|
|
LL | | pub mod bar2 {}
|
|
LL | | }
|
|
| |_____^
|
|
|
|
error: module has the same name as its containing module
|
|
--> tests/ui/module_inception.rs:20:9
|
|
|
|
|
LL | / mod bar {
|
|
LL | |
|
|
LL | | mod foo {}
|
|
LL | | }
|
|
| |_________^
|
|
|
|
error: module has the same name as its containing module
|
|
--> tests/ui/module_inception.rs:26:5
|
|
|
|
|
LL | / mod foo {
|
|
LL | |
|
|
LL | | mod bar {}
|
|
LL | | }
|
|
| |_____^
|
|
|
|
error: aborting due to 4 previous errors
|
|
|