about summary refs log tree commit diff
path: root/src/tools/clippy/tests/ui/crashes/ice-12616.rs
blob: bb37b2e6a6791d5f5a31c369e0d69d9a12a7d883 (plain)
1
2
3
4
5
6
7
8
#![warn(clippy::ptr_as_ptr)]
#![allow(clippy::unnecessary_operation, clippy::unnecessary_cast)]

fn main() {
    let s = std::ptr::null::<()>;
    s() as *const ();
    //~^ ptr_as_ptr
}