rust-clippy/tests/ui/author/for_loop.rs
2018-05-19 14:04:57 +02:00

8 lines
112 B
Rust

#![feature(tool_attributes)]
fn main() {
#[clippy::author]
for y in 0..10 {
let z = y;
}
}