about summary refs log tree commit diff
path: root/tests/ui/author/for_loop.rs
blob: b3dec876535c5e5e374f39baa5d6d89ba9535fad (plain)
1
2
3
4
5
6
7
8
#![feature(stmt_expr_attributes)]

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