summaryrefslogtreecommitdiffstats
path: root/src/tools/clippy/tests/ui/module_inception.stderr
blob: ebb8e296f4646a28e33e573983923ac3b6f29596 (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
error: module has the same name as its containing module
  --> $DIR/module_inception.rs:5: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: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
   |
LL | /     mod foo {
LL | |         mod bar {}
LL | |     }
   | |_____^

error: aborting due to 4 previous errors