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