OSDN Git Service

PR c++/51553
[pf3gnuchains/gcc-fork.git] / gcc / testsuite / g++.dg / cpp0x / range-for1.C
1 // Test for range-based for loop
2 // Test the loop with an array
3
4 // { dg-do run }
5 // { dg-options "-std=c++0x" }
6
7 extern "C" void abort();
8
9 int main()
10 {
11     int a[] = {1,2,3,4};
12     int sum = 0;
13     for (int x : a)
14         sum += x;
15     if (sum != 10)
16         abort();
17 }