]> git.lizzy.rs Git - rust.git/blob - clippy_tests/examples/module_inception.stderr
Fix the test suite after cargo update
[rust.git] / clippy_tests / examples / module_inception.stderr
1 error: module has the same name as its containing module
2  --> 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   --> module_inception.rs:12:5
13    |
14 12 | /     mod foo {
15 13 | |         mod bar {}
16 14 | |     }
17    | |_____^
18    |
19    = note: `-D module-inception` implied by `-D warnings`
20
21 error: aborting due to previous error(s)
22
23
24 To learn more, run the command again with --verbose.