// PR c++/49355 // { dg-do compile { target c++11 } } #include struct T { std::string foobar; }; int main() { T* x = new T({""}); }