rust-clippy/tests/ui/crashes/ice-12616.rs

7 lines
167 B
Rust

#![warn(clippy::ptr_as_ptr)]
#![allow(clippy::unnecessary_operation, clippy::unnecessary_cast)]
fn main() {
let s = std::ptr::null::<()>;
s() as *const ();
}