]> git.lizzy.rs Git - rust.git/blob - src/tools/clippy/tests/ui/crashes/regressions.rs
Rollup merge of #71813 - ecstatic-morse:issue-71734, r=tmandry
[rust.git] / src / tools / clippy / tests / ui / crashes / regressions.rs
1 // run-pass
2
3 #![allow(clippy::blacklisted_name)]
4
5 pub fn foo(bar: *const u8) {
6     println!("{:#p}", bar);
7 }
8
9 fn main() {}