clippy 0.0.71

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

fn core() {}

fn main() {
    core();
}