aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/gcc/testsuite/g++.dg/cpp0x/initlist54.C
blob: 52a8ff94d991368a95372f5e672f733965ede107 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
// PR c++/49355
// { dg-do compile { target c++11 } }

#include <string>

struct T {
  std::string foobar;
};

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