rust/tests/ui/item_after_statement.rs
Chris Ayoup 32e2021b75 Lint items after statements in macro expansions
The items_after_statements lint was skipping all expansions.  Instead
we should still lint local macros.

Fixes #578
2020-10-14 23:49:48 -04:00

40 lines
574 B
Rust

#![warn(clippy::items_after_statements)]
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);
}