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;
|
|
}
|
|
}
|