mirror of
https://github.com/rust-lang/rust-clippy
synced 2024-11-15 17:28:07 +00:00
861b897c54
This was fixed in pulldown_cmark 0.7.1, specifically https://github.com/raphlinus/pulldown-cmark/pull/438
13 lines
221 B
Rust
13 lines
221 B
Rust
// run-pass
|
|
|
|
#![allow(clippy::blacklisted_name)]
|
|
|
|
pub fn foo(bar: *const u8) {
|
|
println!("{:#p}", bar);
|
|
}
|
|
|
|
// Regression test for https://github.com/rust-lang/rust-clippy/issues/4917
|
|
/// <foo
|
|
struct A {}
|
|
|
|
fn main() {}
|