]> git.lizzy.rs Git - rust.git/blobdiff - tests/ui/item_after_statement.stderr
Auto merge of #3603 - xfix:random-state-lint, r=phansch
[rust.git] / tests / ui / item_after_statement.stderr
index c988fca3827fe9fef65b41388a3de689ad977171..3024431244cc50aeb6f2f102fc83fb95b2c7b678 100644 (file)
@@ -1,9 +1,9 @@
 error: adding items after statements is confusing, since items exist from the start of the scope
   --> $DIR/item_after_statement.rs:21:5
    |
-21 | /     fn foo() {
-22 | |         println!("foo");
-23 | |     }
+LL | /     fn foo() {
+LL | |         println!("foo");
+LL | |     }
    | |_____^
    |
    = note: `-D clippy::items-after-statements` implied by `-D warnings`
@@ -11,9 +11,9 @@ error: adding items after statements is confusing, since items exist from the st
 error: adding items after statements is confusing, since items exist from the start of the scope
   --> $DIR/item_after_statement.rs:28:5
    |
-28 | /     fn foo() {
-29 | |         println!("foo");
-30 | |     }
+LL | /     fn foo() {
+LL | |         println!("foo");
+LL | |     }
    | |_____^
 
 error: aborting due to 2 previous errors