rust-clippy/tests/ui/module_inception.stderr

21 lines
456 B
Text
Raw Normal View History

error: module has the same name as its containing module
2017-08-01 15:54:21 +00:00
--> $DIR/module_inception.rs:7:9
|
7 | / mod bar {
8 | | mod foo {}
9 | | }
| |_________^
|
= note: `-D module-inception` implied by `-D warnings`
error: module has the same name as its containing module
2017-08-01 15:54:21 +00:00
--> $DIR/module_inception.rs:12:5
|
12 | / mod foo {
13 | | mod bar {}
14 | | }
| |_____^
2018-01-16 16:06:27 +00:00
error: aborting due to 2 previous errors