summaryrefslogtreecommitdiff
path: root/gcc/testsuite/g++.old-deja/g++.ext/addrfunc2.C
blob: 7314d1632f838e0b2ed5ee11f62963414f8674f8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
// { dg-do run  }
// { dg-options "-fms-extensions" }
// Test for implicit & on methods.
// Contributed by Jason Merrill <jason@cygnus.com>.

struct A {
  void f (int = 0) { }
};

int
main ()
{
  void (A::*p)(int) = 0;
  p = A::f;
  if (p != A::f)
    return 1;
}