loepere@westford.ccur.com (07/01/89)
The following worked in 1.34, but not in 1.35 (the compiler claims:
"sorry, not implemented: address of bound pointer-to-member
expression"). Pointers to function members still work. - Keith
class complex
{
public:
float real;
float imag;
};
int main ()
{
float complex::*data_ptr;
data_ptr = &complex::real;
}