rust/tests/ui-toml/module_inception/module_inception.stderr
Centri3 b303e2053c allow disabling module inception on private modules
allow disabling module inception on private modules
2023-06-10 08:09:07 -05:00

21 lines
492 B
Plaintext

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`
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