mirror of
https://github.com/rust-lang/rust.git
synced 2026-05-17 05:25:37 +03:00
12 lines
181 B
Rust
12 lines
181 B
Rust
//@ check-pass
|
|
|
|
#![feature(stmt_expr_attributes)]
|
|
#![allow(clippy::uninlined_format_args)]
|
|
|
|
fn main() {
|
|
#[clippy::author]
|
|
for i in 0..1 {
|
|
println!("{}", i);
|
|
}
|
|
}
|