rust-clippy/tests/ui/item_after_statement.rs

37 lines
487 B
Rust
Raw Normal View History

2018-07-28 15:34:52 +00:00
#![warn(clippy::items_after_statements)]
2016-01-24 09:16:56 +00:00
fn ok() {
2018-12-09 22:26:16 +00:00
fn foo() {
println!("foo");
}
foo();
}
fn last() {
foo();
2018-12-09 22:26:16 +00:00
fn foo() {
println!("foo");
}
}
2016-01-24 09:16:56 +00:00
fn main() {
foo();
2018-12-09 22:26:16 +00:00
fn foo() {
println!("foo");
}
2016-01-24 09:16:56 +00:00
foo();
}
fn mac() {
let mut a = 5;
println!("{}", a);
// do not lint this, because it needs to be after `a`
macro_rules! b {
2018-12-09 22:26:16 +00:00
() => {{
a = 6
}};
}
b!();
println!("{}", a);
}