rust/tests/ui/module_inception.stderr

43 lines
981 B
Plaintext
Raw Normal View History

error: module has the same name as its containing module
2024-02-17 06:16:29 -06:00
--> tests/ui/module_inception.rs:5:9
2018-10-06 11:18:06 -05:00
|
LL | / pub mod bar2 {
LL | |
LL | |
LL | | pub mod foo2 {}
2018-12-27 09:57:55 -06:00
LL | | }
2018-10-06 11:18:06 -05: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 06:16:29 -06: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 06:16:29 -06: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 06:16:29 -06:00
--> tests/ui/module_inception.rs:26:5
|
2018-12-27 09:57:55 -06:00
LL | / mod foo {
LL | |
2018-12-27 09:57:55 -06:00
LL | | mod bar {}
LL | | }
| |_____^
error: aborting due to 4 previous errors
2018-01-16 10:06:27 -06:00