]> git.lizzy.rs Git - rust.git/blob - tests/ui/item_after_statement.stderr
Reduce the hackiness of cargo-clippy
[rust.git] / tests / ui / item_after_statement.stderr
1 error: adding items after statements is confusing, since items exist from the start of the scope
2   --> $DIR/item_after_statement.rs:12:5
3    |
4 12 |     fn foo() { println!("foo"); }
5    |     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
6    |
7    = note: `-D items-after-statements` implied by `-D warnings`
8
9 error: adding items after statements is confusing, since items exist from the start of the scope
10   --> $DIR/item_after_statement.rs:17:5
11    |
12 17 |     fn foo() { println!("foo"); }
13    |     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
14