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