rust-clippy/tests/ui/item_after_statement.rs
2017-10-03 12:07:24 +02:00

30 lines
424 B
Rust

#![warn(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 }}
}
b!();
println!("{}", a);
}