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