Hi,
consider this code:
//****************
class A{
public:
double f1();
const static double (A::*q)();
};
const double (A::*A::q)() = &f1;
//*****************
Egcs-1.1 accepts that, the current CVS doesn't and gives a weird
message:
h.cc:7: argument of type `double (A::)()' does not match `const double
(A::*)()'
Machine is i586-pc-linux-gnu.
Thomas