2022-10-02 15:13:22 -04:00
|
|
|
#![allow(clippy::disallowed_names, clippy::uninlined_format_args)]
|
2017-05-12 12:02:42 +02:00
|
|
|
|
|
|
|
pub fn foo(bar: *const u8) {
|
|
|
|
println!("{:#p}", bar);
|
|
|
|
}
|
|
|
|
|
2020-06-01 10:20:17 +02:00
|
|
|
// Regression test for https://github.com/rust-lang/rust-clippy/issues/4917
|
|
|
|
/// <foo
|
2022-03-27 14:41:09 +02:00
|
|
|
struct A;
|
2020-06-01 10:20:17 +02:00
|
|
|
|
2017-05-12 12:02:42 +02:00
|
|
|
fn main() {}
|