]> git.proxmox.com Git - rustc.git/blob - src/tools/clippy/tests/ui/item_after_statement.stderr
New upstream version 1.25.0+dfsg1
[rustc.git] / src / tools / clippy / 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
15 error: aborting due to 2 previous errors
16