rust-clippy/tests/ui/module_inception.stderr
2018-12-28 12:41:12 +01:00

20 lines
473 B
Text

error: module has the same name as its containing module
--> $DIR/module_inception.rs:14:9
|
LL | / mod bar {
LL | | mod foo {}
LL | | }
| |_________^
|
= note: `-D clippy::module-inception` implied by `-D warnings`
error: module has the same name as its containing module
--> $DIR/module_inception.rs:19:5
|
LL | / mod foo {
LL | | mod bar {}
LL | | }
| |_____^
error: aborting due to 2 previous errors