rust/tests/ui/author/for_loop.rs

9 lines
113 B
Rust
Raw Normal View History

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