aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/g++.old-deja/g++.other/defarg2.C
blob: edb0770c7d6e5a37046ed2426a2470986c308a50 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
// Test that default args don't mess up pmf type comparisons.
// 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;
}