rust/tests/ui/author/for_loop.rs

9 lines
117 B
Rust

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