mirror of
https://github.com/rust-lang/rust-clippy
synced 2024-11-15 09:27:25 +00:00
11 lines
208 B
Rust
11 lines
208 B
Rust
#![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() {}
|