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

// { dg-do run { target c++11 } }

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();
}