view gcc/testsuite/g++.dg/cpp0x/initlist49.C @ 131:84e7813d76e9

gcc-8.2
author mir3636
date Thu, 25 Oct 2018 07:37:49 +0900
parents 04ced10e8804
children
line wrap: on
line source

// Test for non-trivial list-initialization with array new.
// { dg-do run { target c++11 } }

struct A
{
  enum E { c_string, number } e;
  A(const char *): e(c_string) {}
  A(int): e(number) {}
};

int main()
{
  A* ap = new A[2]{1, ""};
  if (ap[0].e != A::number || ap[1].e != A::c_string)
    return 1;
  delete[] ap;
}