2018-07-30 04:33:44 -05:00
|
|
|
#![allow(clippy::blacklisted_name)]
|
2017-05-12 05:02:42 -05:00
|
|
|
|
|
|
|
pub fn foo(bar: *const u8) {
|
|
|
|
println!("{:#p}", bar);
|
|
|
|
}
|
|
|
|
|
2020-06-01 03:20:17 -05:00
|
|
|
// Regression test for https://github.com/rust-lang/rust-clippy/issues/4917
|
|
|
|
/// <foo
|
|
|
|
struct A {}
|
|
|
|
|
2017-05-12 05:02:42 -05:00
|
|
|
fn main() {}
|