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