2022-10-02 14:13:22 -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-01 03:20:17 -05:00
|
|
|
// Regression test for https://github.com/rust-lang/rust-clippy/issues/4917
|
|
|
|
/// <foo
|
2022-03-27 07:41:09 -05:00
|
|
|
struct A;
|
2020-06-01 03:20:17 -05:00
|
|
|
|
2017-05-12 05:02:42 -05:00
|
|
|
fn main() {}
|