2017-02-07 20:05:30 +00:00
|
|
|
error: adding items after statements is confusing, since items exist from the start of the scope
|
2023-04-11 13:31:08 +00:00
|
|
|
--> $DIR/items_after_statement.rs:13:5
|
2017-02-07 20:05:30 +00:00
|
|
|
|
|
2018-12-27 15:57:55 +00:00
|
|
|
LL | / fn foo() {
|
2023-08-24 19:32:12 +00:00
|
|
|
LL | |
|
|
|
|
LL | |
|
2018-12-27 15:57:55 +00:00
|
|
|
LL | | println!("foo");
|
|
|
|
LL | | }
|
2018-12-10 05:27:19 +00:00
|
|
|
| |_____^
|
2017-02-07 20:05:30 +00:00
|
|
|
|
|
2018-08-01 14:30:44 +00:00
|
|
|
= note: `-D clippy::items-after-statements` implied by `-D warnings`
|
2023-08-01 12:02:21 +00:00
|
|
|
= help: to override `-D warnings` add `#[allow(clippy::items_after_statements)]`
|
2017-02-07 20:05:30 +00:00
|
|
|
|
|
|
|
error: adding items after statements is confusing, since items exist from the start of the scope
|
2023-08-24 19:32:12 +00:00
|
|
|
--> $DIR/items_after_statement.rs:22:5
|
2017-02-07 20:05:30 +00:00
|
|
|
|
|
2018-12-27 15:57:55 +00:00
|
|
|
LL | / fn foo() {
|
2023-08-24 19:32:12 +00:00
|
|
|
LL | |
|
2018-12-27 15:57:55 +00:00
|
|
|
LL | | println!("foo");
|
|
|
|
LL | | }
|
2018-12-10 05:27:19 +00:00
|
|
|
| |_____^
|
2017-02-07 20:05:30 +00:00
|
|
|
|
2020-11-05 13:29:48 +00:00
|
|
|
error: adding items after statements is confusing, since items exist from the start of the scope
|
2023-08-24 19:32:12 +00:00
|
|
|
--> $DIR/items_after_statement.rs:36:13
|
2020-11-05 13:29:48 +00:00
|
|
|
|
|
|
|
|
LL | / fn say_something() {
|
|
|
|
LL | | println!("something");
|
|
|
|
LL | | }
|
|
|
|
| |_____________^
|
|
|
|
...
|
|
|
|
LL | b!();
|
2021-10-14 18:28:30 +00:00
|
|
|
| ---- in this macro invocation
|
2020-11-05 13:29:48 +00:00
|
|
|
|
|
2021-02-13 19:52:25 +00:00
|
|
|
= note: this error originates in the macro `b` (in Nightly builds, run with -Z macro-backtrace for more info)
|
2020-11-05 13:29:48 +00:00
|
|
|
|
|
|
|
error: aborting due to 3 previous errors
|
2018-01-16 16:06:27 +00:00
|
|
|
|