Sign in
rust
/
rust
/
8a7e1d75b2e2f4a2e89420130bca8d8d97f9074e
/
.
/
tests
/
ui
/
array-slice-vec
/
new-style-fixed-length-vec.rs
blob: 95ff2539a5da0ddc5e00df10c93b58175ba05cdf [
file
]
//@ run-pass
static
FOO
:
[
isize
;
3
]
=
[
1
,
2
,
3
];
pub
fn
main
()
{
println
!(
"{} {} {}"
,
FOO
[
0
],
FOO
[
1
],
FOO
[
2
]);
}