]> git.lizzy.rs Git - rust.git/blob - tests/ui/module_inception.stderr
Merge pull request #3265 from mikerite/fix-export
[rust.git] / tests / ui / module_inception.stderr
1 error: module has the same name as its containing module
2   --> $DIR/module_inception.rs:17:9
3    |
4 17 | /         mod bar {
5 18 | |             mod foo {}
6 19 | |         }
7    | |_________^
8    |
9    = note: `-D clippy::module-inception` implied by `-D warnings`
10
11 error: module has the same name as its containing module
12   --> $DIR/module_inception.rs:22:5
13    |
14 22 | /     mod foo {
15 23 | |         mod bar {}
16 24 | |     }
17    | |_____^
18
19 error: aborting due to 2 previous errors
20