2017-02-07 20:05:30 +00:00
|
|
|
error: module has the same name as its containing module
|
2024-02-17 12:16:29 +00:00
|
|
|
--> tests/ui/module_inception.rs:5:9
|
2018-10-06 16:18:06 +00:00
|
|
|
|
|
2023-07-02 12:35:19 +00:00
|
|
|
LL | / pub mod bar2 {
|
2023-08-24 19:32:12 +00:00
|
|
|
LL | |
|
|
|
|
LL | |
|
2023-07-02 12:35:19 +00:00
|
|
|
LL | | pub mod foo2 {}
|
2018-12-27 15:57:55 +00:00
|
|
|
LL | | }
|
2018-10-06 16:18:06 +00:00
|
|
|
| |_________^
|
|
|
|
|
|
|
|
|
= note: `-D clippy::module-inception` implied by `-D warnings`
|
2023-08-01 12:02:21 +00:00
|
|
|
= help: to override `-D warnings` add `#[allow(clippy::module_inception)]`
|
2017-02-07 20:05:30 +00:00
|
|
|
|
|
|
|
error: module has the same name as its containing module
|
2024-02-17 12:16:29 +00:00
|
|
|
--> tests/ui/module_inception.rs:12:5
|
2017-02-07 20:05:30 +00:00
|
|
|
|
|
2023-07-02 12:35:19 +00:00
|
|
|
LL | / pub mod foo2 {
|
2023-08-24 19:32:12 +00:00
|
|
|
LL | |
|
2023-07-02 12:35:19 +00:00
|
|
|
LL | | pub mod bar2 {}
|
|
|
|
LL | | }
|
|
|
|
| |_____^
|
|
|
|
|
|
|
|
error: module has the same name as its containing module
|
2024-02-17 12:16:29 +00:00
|
|
|
--> tests/ui/module_inception.rs:20:9
|
2023-07-02 12:35:19 +00:00
|
|
|
|
|
|
|
|
LL | / mod bar {
|
2023-08-24 19:32:12 +00:00
|
|
|
LL | |
|
2023-07-02 12:35:19 +00:00
|
|
|
LL | | mod foo {}
|
|
|
|
LL | | }
|
|
|
|
| |_________^
|
|
|
|
|
|
|
|
error: module has the same name as its containing module
|
2024-02-17 12:16:29 +00:00
|
|
|
--> tests/ui/module_inception.rs:26:5
|
2023-07-02 12:35:19 +00:00
|
|
|
|
|
2018-12-27 15:57:55 +00:00
|
|
|
LL | / mod foo {
|
2023-08-24 19:32:12 +00:00
|
|
|
LL | |
|
2018-12-27 15:57:55 +00:00
|
|
|
LL | | mod bar {}
|
|
|
|
LL | | }
|
2017-04-23 13:25:22 +00:00
|
|
|
| |_____^
|
2017-02-07 20:05:30 +00:00
|
|
|
|
2023-07-02 12:35:19 +00:00
|
|
|
error: aborting due to 4 previous errors
|
2018-01-16 16:06:27 +00:00
|
|
|
|