Sign in
android
/
toolchain
/
rustc
/
refs/heads/main
/
.
/
tests
/
ui
/
cast
/
cast-region-to-uint.rs
blob: 6f4edadafee510981ebddf36ebcdefc551e816c3 [
file
] [
log
] [
blame
] [
edit
]
//@ run-pass
pub
fn
main
()
{
let
x
:
isize
=
3
;
println
!(
"&x={:x}"
,
(&
x
as
*
const
isize
as
usize
));
}