Sign in
rust
/
rust
/
e8a00a7621606f8c4a34b679cefaaa6aecf2442e
/
.
/
src
/
tools
/
clippy
/
tests
/
ui
/
author
/
macro_in_closure.rs
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"
);
}