def-args1.C   [plain text]


// Build don't link: 
// PRMS Id: 10860
class Beige
{
public:
    static int yellow();
    void white(int green = yellow());
    void aqua(int green = Beige::yellow());
};