Sign in
android
/
toolchain
/
rustc
/
refs/heads/main
/
.
/
tests
/
ui
/
consts
/
const-negative.rs
blob: 96a271add1e89997279dd09f49d8036d4d855705 [
file
] [
log
] [
blame
] [
edit
]
//@ run-pass
// Issue #358
#![
allow
(
non_upper_case_globals
)]
static
toplevel_mod
:
isize
=
-
1
;
pub
fn
main
()
{
assert_eq
!(
toplevel_mod
,
-
1
);
}