2018-07-28 15:34:52 +00:00
|
|
|
#![warn(clippy::items_after_statements)]
|
2022-10-02 19:13:22 +00:00
|
|
|
#![allow(clippy::uninlined_format_args)]
|
2016-01-24 09:16:56 +00:00
|
|
|
|
2016-06-28 13:54:23 +00:00
|
|
|
fn ok() {
|
2018-12-09 22:26:16 +00:00
|
|
|
fn foo() {
|
|
|
|
println!("foo");
|
|
|
|
}
|
2016-06-28 13:54:23 +00:00
|
|
|
foo();
|
|
|
|
}
|
|
|
|
|
|
|
|
fn last() {
|
|
|
|
foo();
|
2018-12-09 22:26:16 +00:00
|
|
|
fn foo() {
|
2023-07-28 19:35:48 +00:00
|
|
|
//~^ ERROR: adding items after statements is confusing, since items exist from the sta
|
|
|
|
//~| NOTE: `-D clippy::items-after-statements` implied by `-D warnings`
|
2018-12-09 22:26:16 +00:00
|
|
|
println!("foo");
|
|
|
|
}
|
2016-06-28 13:54:23 +00:00
|
|
|
}
|
|
|
|
|
2016-01-24 09:16:56 +00:00
|
|
|
fn main() {
|
|
|
|
foo();
|
2018-12-09 22:26:16 +00:00
|
|
|
fn foo() {
|
2023-07-28 19:35:48 +00:00
|
|
|
//~^ ERROR: adding items after statements is confusing, since items exist from the sta
|
2018-12-09 22:26:16 +00:00
|
|
|
println!("foo");
|
|
|
|
}
|
2016-01-24 09:16:56 +00:00
|
|
|
foo();
|
|
|
|
}
|
2017-03-13 10:09:56 +00:00
|
|
|
|
|
|
|
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
|
|
|
() => {{
|
2020-10-15 03:49:48 +00:00
|
|
|
a = 6;
|
|
|
|
fn say_something() {
|
|
|
|
println!("something");
|
|
|
|
}
|
2018-12-09 22:26:16 +00:00
|
|
|
}};
|
2017-03-13 10:09:56 +00:00
|
|
|
}
|
|
|
|
b!();
|
|
|
|
println!("{}", a);
|
|
|
|
}
|
2020-11-28 16:18:15 +00:00
|
|
|
|
|
|
|
fn semicolon() {
|
|
|
|
struct S {
|
|
|
|
a: u32,
|
|
|
|
};
|
|
|
|
impl S {
|
|
|
|
fn new(a: u32) -> Self {
|
|
|
|
Self { a }
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
let _ = S::new(3);
|
|
|
|
}
|
2023-03-24 15:29:30 +00:00
|
|
|
|
|
|
|
fn item_from_macro() {
|
|
|
|
macro_rules! static_assert_size {
|
|
|
|
($ty:ty, $size:expr) => {
|
|
|
|
const _: [(); $size] = [(); ::std::mem::size_of::<$ty>()];
|
|
|
|
};
|
|
|
|
}
|
|
|
|
|
|
|
|
let _ = 1;
|
|
|
|
static_assert_size!(u32, 4);
|
|
|
|
}
|
|
|
|
|
|
|
|
fn allow_attribute() {
|
|
|
|
let _ = 1;
|
|
|
|
#[allow(clippy::items_after_statements)]
|
|
|
|
const _: usize = 1;
|
|
|
|
}
|