1 // PR c++/49355
2 // { dg-do compile { target c++11 } }
3 
4 #include <string>
5 
6 struct T {
7   std::string foobar;
8 };
9 
main()10 int main()
11 {
12   T* x = new T({""});
13 }
14