Sign in
android
/
toolchain
/
rustc
/
refs/heads/main
/
.
/
tests
/
ui
/
stable-addr-of.rs
blob: e330a4853ce0352b322e16f0db66a109bf82d2ae [
file
] [
log
] [
blame
] [
edit
]
//@ run-pass
// Issue #2040
pub
fn
main
()
{
let
foo
:
isize
=
1
;
assert_eq
!(&
foo
as
*
const
isize
,
&
foo
as
*
const
isize
);
}