about summary refs log tree commit diff
path: root/src/tools/clippy/tests/ui/author/macro_in_closure.rs
blob: 373f0148d475a2d184fd62a2fc254407e5cc1f01 (plain)
1
2
3
4
5
6
7
8
9
//@ check-pass

#![allow(clippy::uninlined_format_args)]

fn main() {
    #[clippy::author]
    let print_text = |x| println!("{}", x);
    print_text("hello");
}