2017-02-07 20:05:30 +00:00
|
|
|
error: adding items after statements is confusing, since items exist from the start of the scope
|
2019-01-07 21:33:18 +00:00
|
|
|
--> $DIR/item_after_statement.rs:12:5
|
2017-02-07 20:05:30 +00:00
|
|
|
|
|
2018-12-27 15:57:55 +00:00
|
|
|
LL | / fn foo() {
|
|
|
|
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`
|
2017-02-07 20:05:30 +00:00
|
|
|
|
|
|
|
error: adding items after statements is confusing, since items exist from the start of the scope
|
2019-01-07 21:33:18 +00:00
|
|
|
--> $DIR/item_after_statement.rs:19:5
|
2017-02-07 20:05:30 +00:00
|
|
|
|
|
2018-12-27 15:57:55 +00:00
|
|
|
LL | / fn foo() {
|
|
|
|
LL | | println!("foo");
|
|
|
|
LL | | }
|
2018-12-10 05:27:19 +00:00
|
|
|
| |_____^
|
2017-02-07 20:05:30 +00:00
|
|
|
|
2020-10-15 03:49:48 +00:00
|
|
|
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 a macro (in Nightly builds, run with -Z macro-backtrace for more info)
|
|
|
|
|
|
|
|
error: aborting due to 3 previous errors
|
2018-01-16 16:06:27 +00:00
|
|
|
|