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