mirror of
https://github.com/rust-lang/rust.git
synced 2025-01-24 05:33:41 +00:00
9 lines
124 B
Rust
9 lines
124 B
Rust
#![feature(stmt_expr_attributes)]
|
|
|
|
fn main() {
|
|
#[clippy::author]
|
|
for i in 0..1 {
|
|
println!("{}", i);
|
|
}
|
|
}
|