aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/g++.old-deja/g++.other/pmf1.C
blob: e84a39a03f136d05e17a99c6036ea083c267a9dd (plain)
1
2
3
4
5
6
7
8
struct foo {};
typedef long unsigned int & (foo::*pmf)(void);
void fn (...) {}
int main ()
{
  pmf y = 0;
  fn (y);
}