(root)/
gcc-13.2.0/
gcc/
testsuite/
g++.dg/
cpp0x/
initlist54.C
// PR c++/49355
// { dg-do compile { target c++11 } }

#include <string>

struct T {
  std::string foobar;
};

int main()
{
  T* x = new T({""});
}