Sign in
android
/
toolchain
/
rustc
/
refs/heads/main
/
.
/
tests
/
ui
/
for-loop-while
/
auto-loop.rs
blob: 5903986d62d7aa5ab5252af642732d12fe037131 [
file
] [
log
] [
blame
] [
edit
]
//@ run-pass
pub
fn
main
()
{
let
mut
sum
=
0
;
let
xs
=
vec
![
1
,
2
,
3
,
4
,
5
];
for
x in
&
xs
{
sum
+=
*
x
;
}
assert_eq
!(
sum
,
15
);
}