blob: d5856614f91f128e7e1e7145c44efe0831d32f5a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
|
error: module has the same name as its containing module
--> $DIR/module_inception.rs:5:9
|
LL | / pub mod bar2 {
LL | |
LL | |
LL | | pub mod foo2 {}
LL | | }
| |_________^
|
= 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
--> $DIR/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
--> $DIR/module_inception.rs:20:9
|
LL | / mod bar {
LL | |
LL | | mod foo {}
LL | | }
| |_________^
error: module has the same name as its containing module
--> $DIR/module_inception.rs:26:5
|
LL | / mod foo {
LL | |
LL | | mod bar {}
LL | | }
| |_____^
error: aborting due to 4 previous errors
|