]> git.lizzy.rs Git - rust.git/blobdiff - tests/ui/item_after_statement.stderr
Fix #88256, remove duplicated diagnostic
[rust.git] / tests / ui / item_after_statement.stderr
index e98e7ee129d8dd5bae43d7a2b0f66901622ff6ba..bcb163d4bc1243e2604ecd40ed818448c0dbc3a8 100644 (file)
@@ -1,14 +1,33 @@
 error: adding items after statements is confusing, since items exist from the start of the scope
   --> $DIR/item_after_statement.rs:12:5
    |
-12 |     fn foo() { println!("foo"); }
-   |     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
+LL | /     fn foo() {
+LL | |         println!("foo");
+LL | |     }
+   | |_____^
    |
-   = note: `-D items-after-statements` implied by `-D warnings`
+   = note: `-D clippy::items-after-statements` implied by `-D warnings`
 
 error: adding items after statements is confusing, since items exist from the start of the scope
-  --> $DIR/item_after_statement.rs:17:5
+  --> $DIR/item_after_statement.rs:19:5
    |
-17 |     fn foo() { println!("foo"); }
-   |     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
+LL | /     fn foo() {
+LL | |         println!("foo");
+LL | |     }
+   | |_____^
+
+error: adding items after statements is confusing, since items exist from the start of the scope
+  --> $DIR/item_after_statement.rs:32:13
+   |
+LL | /             fn say_something() {
+LL | |                 println!("something");
+LL | |             }
+   | |_____________^
+...
+LL |       b!();
+   |       ----- in this macro invocation
+   |
+   = note: this error originates in the macro `b` (in Nightly builds, run with -Z macro-backtrace for more info)
+
+error: aborting due to 3 previous errors