Sign in
fuchsia
/
third_party
/
rust
/
b3827e4f3728b77bd3e60587487ebfc3cc8d901b
/
.
/
tests
/
ui
/
for-loop-while
/
loop-scope.rs
blob: a913b2554d23f506c32d60b5f9252fa73b6f5387 [
file
] [
log
] [
blame
]
//@ run-pass
pub
fn
main
()
{
let
x
=
vec
![
10
,
20
,
30
];
let
mut
sum
=
0
;
for
x in
&
x
{
sum
+=
*
x
;
}
assert_eq
!(
sum
,
60
);
}