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