mirror of
https://github.com/rust-lang/rust-clippy
synced 2024-11-15 09:27:25 +00:00
21 lines
570 B
Text
21 lines
570 B
Text
error: module has the same name as its containing module
|
|
--> $DIR/module_inception.rs:6:9
|
|
|
|
|
LL | / pub mod bar2 {
|
|
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
|
|
--> $DIR/module_inception.rs:11:5
|
|
|
|
|
LL | / pub mod foo2 {
|
|
LL | | pub mod bar2 {}
|
|
LL | | }
|
|
| |_____^
|
|
|
|
error: aborting due to 2 previous errors
|
|
|