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

struct A
{
  void f();
};

using ftype = decltype(&A::f);

template <class T>
bool f()
{
  ftype p = ftype{};
  return p;
}

int main()
{
  f<int>();
}