Sign in
android
/
toolchain
/
rustc
/
refs/heads/main
/
.
/
tests
/
ui
/
consts
/
const-deref.rs
blob: 21a5eb3b64dc08eb9d7a746d7d7355377196d1c6 [
file
] [
log
] [
blame
] [
edit
]
//@ run-pass
const
C
:
&
'
static
isize
=
&
1000
;
static
D
:
isize
=
*
C
;
pub
fn
main
()
{
assert_eq
!(
D
,
1000
);
}