clippy 0.0.129

A bunch of helpful lints to avoid common pitfalls in Rust
#![feature(plugin)]
#![plugin(clippy)]
#![allow(clippy)]

fn main() {
    match 1 {
        1 => {}
        2 => {
            [0; 1];
        }
        _ => {}
    }
}