]> git.lizzy.rs Git - rust.git/blobdiff - tests/ui/module_inception.stderr
iterate List by value
[rust.git] / tests / ui / module_inception.stderr
index de0ff78eb40687131f8908d307a183a45ae42952..77564dce9eb48fd5a3524f220004d92d2b0f1c08 100644 (file)
@@ -1,26 +1,20 @@
 error: module has the same name as its containing module
- --> $DIR/module_inception.rs:7:9
-  |
-7 |           mod bar { //~ ERROR module has the same name as its containing module
-  |  _________^ starting here...
-8 | |             mod foo {}
-9 | |         }
-  | |_________^ ...ending here
-  |
-note: lint level defined here
- --> $DIR/module_inception.rs:3:9
-  |
-3 | #![deny(module_inception)]
-  |         ^^^^^^^^^^^^^^^^
+  --> $DIR/module_inception.rs:5:9
+   |
+LL | /         mod bar {
+LL | |             mod foo {}
+LL | |         }
+   | |_________^
+   |
+   = note: `-D clippy::module-inception` implied by `-D warnings`
 
 error: module has the same name as its containing module
-  --> $DIR/module_inception.rs:12:5
+  --> $DIR/module_inception.rs:10:5
    |
-12 |       mod foo { //~ ERROR module has the same name as its containing module
-   |  _____^ starting here...
-13 | |         mod bar {}
-14 | |     }
-   | |_____^ ...ending here
+LL | /     mod foo {
+LL | |         mod bar {}
+LL | |     }
+   | |_____^
 
 error: aborting due to 2 previous errors