incomplete1.C   [plain text]


// The reference parameter to fred isn't dereferenced properly.
// Build don't link:

class Gump {};
Gump  operator &  (const Gump x){return x;}

class B;

void *sam(int &x)
{return &x;}

const void *fred(const B& x)
{return &x;}  // "&x" causes the compilation error.

class B {};