]> git.proxmox.com Git - rustc.git/blob - src/tools/clippy/tests/ui/module_inception.stderr
New upstream version 1.23.0+dfsg1
[rustc.git] / src / tools / clippy / tests / ui / module_inception.stderr
1 error: module has the same name as its containing module
2 --> $DIR/module_inception.rs:7:9
3 |
4 7 | / mod bar {
5 8 | | mod foo {}
6 9 | | }
7 | |_________^
8 |
9 = note: `-D module-inception` implied by `-D warnings`
10
11 error: module has the same name as its containing module
12 --> $DIR/module_inception.rs:12:5
13 |
14 12 | / mod foo {
15 13 | | mod bar {}
16 14 | | }
17 | |_____^
18