mirror of
https://github.com/rust-lang/rust.git
synced 2026-05-23 02:27:39 +03: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);
|
|
}
|
|
}
|