about summary refs log tree commit diff
path: root/src/tools/clippy/tests/ui/crashes/ice-12616.fixed
blob: b7840cabc6b48d827038bdcd6cabb640a73226d1 (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().cast::<()>();
    //~^ ptr_as_ptr
}