Sign in
fuchsia
/
third_party
/
github.com
/
Kitware
/
CMake
/
c36c19d7118bab0cf76c42e0ff105ffdd964c823
/
.
/
Tests
/
CompileFeatures
/
cxx_range_for.cpp
blob: e3b5724a7fa251d33333a661271baa39a763b05c [
file
]
void
someFunc
()
{
int
accumulated
=
0
;
int
numbers
[]
=
{
1
,
2
,
5
};
for
(
int
i
:
numbers
)
{
accumulated
+=
i
;
}
}