blob: 373f0148d475a2d184fd62a2fc254407e5cc1f01 [file] [log] [blame]
//@ check-pass
#![allow(clippy::uninlined_format_args)]
fn main() {
#[clippy::author]
let print_text = |x| println!("{}", x);
print_text("hello");
}