summaryrefslogtreecommitdiff
path: root/gcc/testsuite/g++.dg/cpp0x/range-for8.C
blob: 641dfe052c2d402649b69c1e389f97968b9a4a98 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
// 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() } )
        ;
}