blob: da98333d809800b5bbbedee73fcb9b46229499bc [file] [log] [blame]
// Test for implicit & on methods.
// Contributed by Jason Merrill <jason@cygnus.com>.
// Special g++ Options: -fpermissive -w
struct A {
void f (int = 0) { }
};
int
main ()
{
void (A::*p)(int) = 0;
p = A::f;
if (p != A::f)
return 1;
}