Sign in
rust
/
rust
/
dc0ec741a8a06b0c3bb5596fbb00a4e29fad3877
/
.
/
src
/
tools
/
clippy
/
tests
/
ui
/
author
/
macro_in_loop.rs
blob: 741edea8af75fe0841ffe028a8a71ab7041fcb32 [
file
]
//@ check-pass
#![
feature
(
stmt_expr_attributes
)]
#![
expect
(
clippy
::
uninlined_format_args
)]
fn
main
()
{
#[
clippy
::
author
]
for
i in
0.
.
1
{
println
!(
"{}"
,
i
);
}
}