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