blob: 641dfe052c2d402649b69c1e389f97968b9a4a98 [file] [log] [blame]
// 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() } )
;
}