Sign in
android
/
toolchain
/
rustc
/
refs/heads/main
/
.
/
tests
/
ui
/
repeat-expr
/
repeat-expr-in-static.rs
blob: b6e619788849b707d0507f9ef75bb64e581fbfcf [
file
] [
log
] [
blame
] [
edit
]
//@ run-pass
static
FOO
:
[
isize
;
4
]
=
[
32
;
4
];
static
BAR
:
[
isize
;
4
]
=
[
32
,
32
,
32
,
32
];
pub
fn
main
()
{
assert_eq
!(
FOO
,
BAR
);
}