2022-10-06 02:44:38 -05:00
|
|
|
#![allow(clippy::disallowed_names, clippy::uninlined_format_args)]
|
2017-05-12 05:02:42 -05:00
|
|
|
|
|
|
|
pub fn foo(bar: *const u8) {
|
|
|
|
println!("{:#p}", bar);
|
|
|
|
}
|
|
|
|
|
2020-06-09 09:36:01 -05:00
|
|
|
// Regression test for https://github.com/rust-lang/rust-clippy/issues/4917
|
|
|
|
/// <foo
|
2022-04-07 12:39:59 -05:00
|
|
|
struct A;
|
2020-06-09 09:36:01 -05:00
|
|
|
|
2017-05-12 05:02:42 -05:00
|
|
|
fn main() {}
|