Sign in
android
/
toolchain
/
rustc
/
cd1aefd586783f162dd848e314bd6991a5ffe033
/
.
/
tests
/
ui
/
lint
/
lint-strict-provenance-fuzzy-casts.rs
blob: d2d72a68f139676a3d9f20a988348a3b4c1ac7e9 [
file
] [
log
] [
blame
]
#![
feature
(
strict_provenance
)]
#![
deny
(
fuzzy_provenance_casts
)]
fn
main
()
{
let
dangling
=
16
_usize
as
*
const
u8
;
//~^ ERROR strict provenance disallows casting integer `usize` to pointer `*const u8`
}