Commit 36a9902d by Jason Merrill Committed by Jason Merrill

* g++.dg/cpp0x/initlist48.C: New.

From-SVN: r173005
parent 6d69c02e
2011-04-26 Jason Merrill <jason@redhat.com>
* g++.dg/cpp0x/initlist48.C: New.
2011-04-25 Jason Merrill <jason@redhat.com>
* g++.dg/cpp0x/sfinae17.C: New.
......
// PR c++/48726
// { dg-options -std=c++0x }
#include <memory>
struct Foo{
int i;
};
typedef std::unique_ptr<Foo> up;
std::initializer_list<up> il{up{new Foo}, up{new Foo}};
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment