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