]> git.lizzy.rs Git - rust.git/blobdiff - tests/ui/module_inception.stderr
iterate List by value
[rust.git] / tests / ui / module_inception.stderr
index c9d3319db1b6a1aa6c187298414a3cb22b8faeff..77564dce9eb48fd5a3524f220004d92d2b0f1c08 100644 (file)
@@ -1,19 +1,19 @@
 error: module has the same name as its containing module
--> $DIR/module_inception.rs:7:9
-  |
-7 | /         mod bar {
-8 | |             mod foo {}
-9 | |         }
-  | |_________^
-  |
-  = note: `-D module-inception` implied by `-D warnings`
 --> $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 {
-13 | |         mod bar {}
-14 | |     }
+LL | /     mod foo {
+LL | |         mod bar {}
+LL | |     }
    | |_____^
 
 error: aborting due to 2 previous errors