blob: 7a79c67766362735f17ad1c4667137b97c129e4b [file] [log] [blame]
// 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}};