blob: 3d5063d1a3a7d783de946c6aa0c9fe3bb04f2f6e [file] [log] [blame]
// run-pass
#![allow(clippy::blacklisted_name)]
pub fn foo(bar: *const u8) {
println!("{:#p}", bar);
}
// Regression test for https://github.com/rust-lang/rust-clippy/issues/4917
/// <foo
struct A {}
fn main() {}