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

9 lines
113 B
Rust
Raw Normal View History

#![feature(plugin)]
#![plugin(clippy)]
pub fn foo(bar: *const u8) {
println!("{:#p}", bar);
}
fn main() {}