]> git.lizzy.rs Git - rust.git/blob - tests/ui/module_inception.stderr
Update changed ui tests
[rust.git] / 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
19 error: aborting due to 2 previous errors
20