rust/tests/ui/item_after_statement.rs
Yuri Astrakhan eb3970285b fallout: fix tests to allow uninlined_format_args
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
2022-10-02 15:13:22 -04:00

54 lines
782 B
Rust

#![warn(clippy::items_after_statements)]
#![allow(clippy::uninlined_format_args)]
fn ok() {
fn foo() {
println!("foo");
}
foo();
}
fn last() {
foo();
fn foo() {
println!("foo");
}
}
fn main() {
foo();
fn foo() {
println!("foo");
}
foo();
}
fn mac() {
let mut a = 5;
println!("{}", a);
// do not lint this, because it needs to be after `a`
macro_rules! b {
() => {{
a = 6;
fn say_something() {
println!("something");
}
}};
}
b!();
println!("{}", a);
}
fn semicolon() {
struct S {
a: u32,
};
impl S {
fn new(a: u32) -> Self {
Self { a }
}
}
let _ = S::new(3);
}