blob: cc03cebc19135f6b81f9c0dcad87a08579c4166a [file] [log] [blame]
// { 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;
}