clippy 0.0.208

A bunch of helpful lints to avoid common pitfalls in Rust



#![allow(dead_code)]
#![warn(empty_enum)]

enum Empty {}

fn main() {
}