rust-clippy/tests/ui/crashes/regressions.rs

8 lines
110 B
Rust
Raw Normal View History

2018-07-30 09:33:44 +00:00
#![allow(clippy::blacklisted_name)]
pub fn foo(bar: *const u8) {
println!("{:#p}", bar);
}
fn main() {}