1 2 3 4 5 6 7 8 9 10 11
//@ check-pass #![feature(stmt_expr_attributes)] #![allow(clippy::uninlined_format_args)] fn main() { #[clippy::author] for i in 0..1 { println!("{}", i); } }