summaryrefslogtreecommitdiffstats
path: root/src/tools/clippy/tests/ui/crashes/regressions.rs
blob: 55a8b403407cd8039f97303fc190cb0fea67fa71 (plain)
1
2
3
4
5
6
7
8
9
10
11
#![allow(clippy::disallowed_names)]

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() {}