summaryrefslogtreecommitdiff
path: root/gcc/testsuite/g++.old-deja/g++.brendan/def-args1.C
blob: c0cc071a4f55f0c53e3bcc372da32449770ab1c7 (plain)
1
2
3
4
5
6
7
8
9
// { dg-do assemble  }
// PRMS Id: 10860
class Beige
{
public:
    static int yellow();
    void white(int green = yellow());
    void aqua(int green = Beige::yellow());
};