Sign in
rust
/
rust
/
97b1c314892ef4497c0ce5656daa3a54c4e052d3
/
.
/
src
/
tools
/
clippy
/
tests
/
ui
/
crashes
/
ice-12616.fixed
blob: b7840cabc6b48d827038bdcd6cabb640a73226d1 [
file
]
#![warn(clippy::ptr_as_ptr)]
#![allow(clippy::unnecessary_operation, clippy::unnecessary_cast)]
fn main
()
{
let
s
=
std
::
ptr
::
null
::<()>;
s
().
cast
::<()>();
//~^ ptr_as_ptr
}