view gcc/testsuite/g++.dg/cpp0x/initlist6.C @ 111:04ced10e8804

gcc 7
author kono
date Fri, 27 Oct 2017 22:46:09 +0900
parents
children
line wrap: on
line source

// 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;
}