2023-07-02 07:35:19 -05:00
|
|
|
error: module has the same name as its containing module
|
2024-02-27 08:25:18 -06:00
|
|
|
--> tests/ui-toml/module_inception/module_inception.rs:6:9
|
2023-07-02 07:35:19 -05:00
|
|
|
|
|
|
|
|
LL | / pub mod bar2 {
|
|
|
|
LL | | pub mod foo2 {}
|
|
|
|
LL | | }
|
|
|
|
| |_________^
|
|
|
|
|
|
|
|
|
= note: `-D clippy::module-inception` implied by `-D warnings`
|
2023-08-01 07:02:21 -05:00
|
|
|
= help: to override `-D warnings` add `#[allow(clippy::module_inception)]`
|
2023-07-02 07:35:19 -05:00
|
|
|
|
|
|
|
error: module has the same name as its containing module
|
2024-02-27 08:25:18 -06:00
|
|
|
--> tests/ui-toml/module_inception/module_inception.rs:11:5
|
2023-07-02 07:35:19 -05:00
|
|
|
|
|
|
|
|
LL | / pub mod foo2 {
|
|
|
|
LL | | pub mod bar2 {}
|
|
|
|
LL | | }
|
|
|
|
| |_____^
|
|
|
|
|
|
|
|
error: aborting due to 2 previous errors
|
|
|
|
|