aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/gcc/testsuite/g++.dg/cpp0x/initlist6.C
blob: 3d02960b9614936a91c771c4679915a2a577832d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
// Test for initlist lifetime
// { dg-do run { target c++11 } }

#include <initializer_list>

int c;

struct A
{
  A(int,int) { ++c; }
  ~A() { --c; }
};

void f (std::initializer_list<A> l) { }

int main()
{
  f({ {1,2}, {3,4} });
  if (c != 0)
    return 1;

  {
    std::initializer_list<A> l { {1,2}, {3,4} };
    if (c != 2)
      return 2;
  }
  if (c != 0)
    return 3;
}