summaryrefslogtreecommitdiff
path: root/gcc/testsuite/g++.dg/cpp0x/range-for1.C
blob: 49e2ecd0bde65d589c1a84b8ba2bfc40ec48fc61 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
// Test for range-based for loop
// Test the loop with an array

// { dg-do run }
// { dg-options "-std=c++0x" }

extern "C" void abort();

int main()
{
    int a[] = {1,2,3,4};
    int sum = 0;
    for (int x : a)
        sum += x;
    if (sum != 10)
        abort();
}