// { dg-do compile { target c++11 } }
#include <initializer_list>
struct A
{
  A& operator=(int i);
  A& operator=(std::initializer_list<int> l) { return *this; }
};
int main()
{
  A a;
  a = { };
}
// { dg-do compile { target c++11 } }
#include <initializer_list>
struct A
{
  A& operator=(int i);
  A& operator=(std::initializer_list<int> l) { return *this; }
};
int main()
{
  A a;
  a = { };
}