summaryrefslogtreecommitdiffstats
path: root/gcc/testsuite/g++.dg/cpp0x/initlist54.C
blob: cdb296133f8d97ff08e70783232a541139092967 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
// PR c++/49355
// { dg-options -std=c++0x }

#include <string>

struct T {
  std::string foobar;
};

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