blob: 52a8ff94d991368a95372f5e672f733965ede107 [file] [log] [blame]
// PR c++/49355
// { dg-do compile { target c++11 } }
#include <string>
struct T {
std::string foobar;
};
int main()
{
T* x = new T({""});
}