Files
rust/tests/ui/author/macro_in_closure.rs
Guillaume Gomez f666fd6417 Update UI tests
2025-02-15 13:38:16 +01:00

8 lines
121 B
Rust

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