aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/gcc/testsuite/g++.dg/cpp0x/initlist46.C
blob: 39a3b5ebd917baa464631e663f844a36d1f12fc9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
// PR c++/48281
// { dg-options "-O2" }
// { dg-do run { target c++11 } }

#include <initializer_list>

typedef std::initializer_list<int>  int1;
typedef std::initializer_list<int1> int2;
static int2 ib = {{42,2,3,4,5},{2,3,4,5,1},{3,4,5,2,1}};

int main()
{
  return *(ib.begin()->begin()) != 42;
}