Sign in
fuchsia
/
third_party
/
rust
/
4717bdfc1343953b770887460d5822c87e434d97
/
.
/
tests
/
ui
/
static
/
refer-to-other-statics-by-value.rs
blob: 4285b4cc0a99ed6830f47fcfd91b153d016438db [
file
] [
log
] [
blame
]
//@ run-pass
static
A
:
usize
=
42
;
static
B
:
usize
=
A
;
fn
main
()
{
assert_eq
!(
B
,
42
);
}