Sign in
fuchsia
/
third_party
/
github.com
/
rust-lang
/
rust
/
e42a4ca53b274dbfd94ea8f712dd9715d2e8fea5
/
.
/
tests
/
ui
/
consts
/
const.rs
blob: 1f1c6e30b4a0850be0bee82be399f6c722bcb10b [
file
]
//@ run-pass
#![
allow
(
non_upper_case_globals
)]
static
i
:
isize
=
10
;
pub
fn
main
()
{
println
!(
"{}"
,
i
);
}