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}};