rust/tests/ui/crashes/regressions.rs

12 lines
206 B
Rust
Raw Normal View History

2022-06-08 20:08:37 +01:00
#![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
2022-03-27 14:41:09 +02:00
struct A;
fn main() {}