blob: b7840cabc6b48d827038bdcd6cabb640a73226d1 [file] [log] [blame]
#![warn(clippy::ptr_as_ptr)]
#![allow(clippy::unnecessary_operation, clippy::unnecessary_cast)]
fn main() {
let s = std::ptr::null::<()>;
s().cast::<()>();
//~^ ptr_as_ptr
}