rust/tests/ui/crashes/regressions.rs

12 lines
205 B
Rust
Raw Normal View History

#![allow(clippy::disallowed_name)]
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() {}