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

10 lines
141 B
Rust
Raw Normal View History

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