Sign in
rust
/
rust
/
526a91cbcc4601b92b0587405015e07b9c0d79f6
/
.
/
src
/
tools
/
clippy
/
tests
/
ui
/
crashes
/
ice-12616.fixed
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
}