clippy 0.0.205

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

fn main() {

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