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

10 lines
135 B
Rust
Raw Normal View History

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