rust/tests/ui/author/for_loop.rs
2018-08-02 18:08:22 -07:00

9 lines
134 B
Rust

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