blob: 48a997fca205b2370feb22f98c9ee238149595d4 [file] [log] [blame]
// { dg-options "-std=c++0x" }
#include <initializer_list>
struct A
{
A& operator=(int i);
A& operator=(std::initializer_list<int> l) { return *this; }
};
int main()
{
A a;
a = { };
}