Sign in
android
/
toolchain
/
rustc
/
refs/heads/main
/
.
/
tests
/
ui
/
consts
/
issue-18294.rs
blob: 77355f0d7c994423a142ceeb4cf87963def7cbcd [
file
] [
log
] [
blame
] [
edit
]
fn
main
()
{
const
X
:
u32
=
1
;
const
Y
:
usize
=
unsafe
{
&
X
as
*
const
u32
as
usize
};
//~ ERROR pointers cannot be cast to integers
println
!(
"{}"
,
Y
);
}