(root)/
gcc-13.2.0/
gcc/
testsuite/
g++.dg/
cpp0x/
nullptr23.C
// PR c++/50361
// { dg-do compile { target c++11 } }

#include <initializer_list>

struct Foo
{
  Foo(std::initializer_list<Foo>) { };

  template<class T> Foo(T t) { T u(t); }

private:
  union Data
  {
    Data() : null(nullptr) {}

    std::nullptr_t null;
  } u_;
};

int main()
{
  Foo f = { {} };
}