summaryrefslogtreecommitdiffstats
path: root/src/tools/clippy/tests/ui/module_inception.stderr
blob: 77564dce9eb48fd5a3524f220004d92d2b0f1c08 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
error: module has the same name as its containing module
  --> $DIR/module_inception.rs:5: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:10:5
   |
LL | /     mod foo {
LL | |         mod bar {}
LL | |     }
   | |_____^

error: aborting due to 2 previous errors