rust/tests/ui/item_after_statement.rs

53 lines
741 B
Rust
Raw Normal View History

2018-07-28 17:34:52 +02:00
#![warn(clippy::items_after_statements)]
2016-01-24 10:16:56 +01:00
fn ok() {
2018-12-09 23:26:16 +01:00
fn foo() {
println!("foo");
}
foo();
}
fn last() {
foo();
2018-12-09 23:26:16 +01:00
fn foo() {
println!("foo");
}
}
2016-01-24 10:16:56 +01:00
fn main() {
foo();
2018-12-09 23:26:16 +01:00
fn foo() {
println!("foo");
}
2016-01-24 10:16:56 +01: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 23:26:16 +01:00
() => {{
a = 6;
fn say_something() {
println!("something");
}
2018-12-09 23:26:16 +01:00
}};
}
b!();
println!("{}", a);
}
fn semicolon() {
struct S {
a: u32,
};
impl S {
fn new(a: u32) -> Self {
Self { a }
}
}
let _ = S::new(3);
}