1// { dg-do run  }
2struct foo {};
3typedef long unsigned int & (foo::*pmf)(void);
4void fn (...) {}
5int main ()
6{
7  pmf y = 0;
8  fn (y);
9}
10