ES.42: index in an example was not declared (#1403)

This commit is contained in:
Aleksander
2019-04-15 19:22:20 +02:00
committed by Sergey Zubkov
parent 1f6042f66c
commit 9f5a67fda7

View File

@@ -11376,6 +11376,7 @@ Use a range-`for`:
void f3()
{
int arr[COUNT];
int i = 0;
for (auto& e : arr)
e = i++;
}