clippy 0.0.208

A bunch of helpful lints to avoid common pitfalls in Rust


#![warn(builtin_type_shadow)]

fn foo<u32>(a: u32) -> u32 {
    42
    // ^ rustc's type error
}

fn main() {
}