Sign in
android
/
toolchain
/
rustc
/
refs/heads/main
/
.
/
tests
/
ui
/
array-slice-vec
/
mutability-inherits-through-fixed-length-vec.rs
blob: ca78db63ce0b652559b1ef29867d2f1000b71c92 [
file
] [
log
] [
blame
] [
edit
]
//@ run-pass
fn
test1
()
{
let
mut
ints
=
[
0
;
32
];
ints
[
0
]
+=
1
;
assert_eq
!(
ints
[
0
],
1
);
}
fn
test2
()
{
let
mut
ints
=
[
0
;
32
];
for
i in
&
mut
ints
{
*
i
+=
22
;
}
for
i in
&
ints
{
assert_eq
!(*
i
,
22
);
}
}
pub
fn
main
()
{
test1
();
test2
();
}