Sign in
android
/
toolchain
/
rustc
/
refs/heads/main
/
.
/
tests
/
ui
/
static
/
refer-to-other-statics-by-value.rs
blob: 4285b4cc0a99ed6830f47fcfd91b153d016438db [
file
] [
log
] [
blame
] [
edit
]
//@ run-pass
static
A
:
usize
=
42
;
static
B
:
usize
=
A
;
fn
main
()
{
assert_eq
!(
B
,
42
);
}