eb3970285b
In order to switch `clippy::uninlined_format_args` from pedantic to style, all existing tests must not raise a warning. I did not want to change the actual tests, so this is a relatively minor change that: * add `#![allow(clippy::uninlined_format_args)]` where needed * normalizes all allow/deny/warn attributes * all allow attributes are grouped together * sorted alphabetically * the `clippy::*` attributes are listed separate from the other ones. * deny and warn attributes are listed before the allowed ones changelog: none
34 lines
1017 B
Plaintext
34 lines
1017 B
Plaintext
error: adding items after statements is confusing, since items exist from the start of the scope
|
|
--> $DIR/item_after_statement.rs:13:5
|
|
|
|
|
LL | / fn foo() {
|
|
LL | | println!("foo");
|
|
LL | | }
|
|
| |_____^
|
|
|
|
|
= 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:20:5
|
|
|
|
|
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:33: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
|
|
|