clippy 0.0.208

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

fn main() {

    #[clippy::author]
    let x: char = 0x45 as char;
}