rust-clippy/tests/run-pass/regressions.rs

10 lines
104 B
Rust
Raw Normal View History

2017-09-18 10:47:33 +00:00
2017-08-01 15:54:21 +00:00
#![allow(blacklisted_name)]
pub fn foo(bar: *const u8) {
println!("{:#p}", bar);
}
fn main() {}