mirror of
https://github.com/rust-lang/rust-clippy
synced 2024-11-10 23:24:24 +00:00
9 lines
135 B
Rust
9 lines
135 B
Rust
#![feature(tool_lints)]
|
|
|
|
#![allow(clippy::blacklisted_name)]
|
|
|
|
pub fn foo(bar: *const u8) {
|
|
println!("{:#p}", bar);
|
|
}
|
|
|
|
fn main() {}
|