mirror of
https://github.com/rust-lang/rust.git
synced 2025-02-09 13:33:43 +00:00
9 lines
112 B
Rust
9 lines
112 B
Rust
#![feature(tool_attributes)]
|
|
|
|
fn main() {
|
|
#[clippy::author]
|
|
for y in 0..10 {
|
|
let z = y;
|
|
}
|
|
}
|