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