8sa1-gcc/gcc/testsuite/g++.old-deja/g++.ext/addrfunc2.C
Jason Merrill 6c9ef6d420 new
From-SVN: r26816
1999-05-07 05:54:10 -04:00

17 lines
250 B
C

// 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;
}