mirror of
https://github.com/rust-lang/rust.git
synced 2025-01-10 06:47:34 +00:00
9 lines
113 B
Rust
9 lines
113 B
Rust
#![feature(custom_attribute)]
|
|
|
|
fn main() {
|
|
#[clippy(author)]
|
|
for y in 0..10 {
|
|
let z = y;
|
|
}
|
|
}
|