blob: a389f66f60908a60a80184e2921eae1cfc4e54d5 [file] [log] [blame]
// Test for range-based for loop when the declarator declares
// a new type
// { dg-do compile { target c++11 } }
#include <initializer_list>
void test()
{
for (struct S { } *x : { (S*)0, (S*)0 } )
;
for (struct S { } x : { S(), S() } )
;
}