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

#include <memory>

struct Foo{
    int i;
};
typedef std::unique_ptr<Foo> up;

std::initializer_list<up> il{up{new Foo}, up{new Foo}};