clippy 0.0.199

A bunch of helpful lints to avoid common pitfalls in Rust


#![allow(blacklisted_name)]

pub fn foo(bar: *const u8) {
    println!("{:#p}", bar);
}

fn main() {}