clippy 0.0.205

A bunch of helpful lints to avoid common pitfalls in Rust
1
2
3
4
5
6
7
8
#![feature(tool_attributes)]

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