Sign in
android
/
toolchain
/
rustc
/
da60c8575e02ed54fcffcb7f2f9289b4705b60ff
/
.
/
src
/
test
/
run-pass
/
stable-addr-of.rs
blob: 2a256bbfa3932ebec549af3e39ad5b8672447a8a [
file
] [
log
] [
blame
]
// Issue #2040
pub
fn
main
()
{
let
foo
:
isize
=
1
;
assert_eq
!(&
foo
as
*
const
isize
,
&
foo
as
*
const
isize
);
}