rust-clippy/tests/ui/module_inception.stderr

37 lines
852 B
Text
Raw Normal View History

error: module has the same name as its containing module
--> $DIR/module_inception.rs:5:9
2018-10-06 16:18:06 +00:00
|
LL | / pub mod bar2 {
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`
error: module has the same name as its containing module
--> $DIR/module_inception.rs:10:5
|
LL | / pub mod foo2 {
LL | | pub mod bar2 {}
LL | | }
| |_____^
error: module has the same name as its containing module
--> $DIR/module_inception.rs:17:9
|
LL | / mod bar {
LL | | mod foo {}
LL | | }
| |_________^
error: module has the same name as its containing module
--> $DIR/module_inception.rs:22:5
|
2018-12-27 15:57:55 +00:00
LL | / mod foo {
LL | | mod bar {}
LL | | }
| |_____^
error: aborting due to 4 previous errors
2018-01-16 16:06:27 +00:00