URL
https://opencores.org/ocsvn/openrisc/openrisc/trunk
Subversion Repositories openrisc
[/] [openrisc/] [trunk/] [gnu-dev/] [or1k-gcc/] [gcc/] [testsuite/] [g++.dg/] [cpp0x/] [range-for1.C] - Rev 693
Compare with Previous | Blame | View Log
// 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();
}