rust-clippy/tests/ui/author/for_loop.rs
2019-01-08 21:46:39 +01:00

8 lines
117 B
Rust

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