defarg2.C   [plain text]


// { dg-do run  }
// 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;
}