clippy 0.0.20

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

fn main(){
  let args = vec![1u8];
  for arg in args {
  }
}