URL
https://opencores.org/ocsvn/openrisc/openrisc/trunk
Subversion Repositories openrisc
[/] [openrisc/] [trunk/] [gnu-dev/] [or1k-gcc/] [gcc/] [testsuite/] [g++.dg/] [cpp0x/] [range-for8.C] - Rev 701
Go to most recent revision | Compare with Previous | Blame | View Log
// Test for range-based for loop when the declarator declares
// a new type
// { dg-do compile }
// { dg-options "-std=c++0x" }
#include <initializer_list>
void test()
{
for (struct S { } *x : { (S*)0, (S*)0 } )
;
for (struct S { } x : { S(), S() } )
;
}
Go to most recent revision | Compare with Previous | Blame | View Log