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

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