rust-clippy/tests/ui/module_inception.stderr

43 lines
981 B
Text
Raw Normal View History

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
|
LL | / pub mod bar2 {
LL | |
LL | |
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`
= help: to override `-D warnings` add `#[allow(clippy::module_inception)]`
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
|
LL | / pub mod foo2 {
LL | |
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
|
LL | / mod bar {
LL | |
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
|
2018-12-27 15:57:55 +00:00
LL | / mod foo {
LL | |
2018-12-27 15:57:55 +00:00
LL | | mod bar {}
LL | | }
| |_____^
error: aborting due to 4 previous errors
2018-01-16 16:06:27 +00:00