aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/g++.old-deja/g++.brendan/def-args1.C
blob: 55efc52e334c01367d2f3e76f4e210b843ccaf2f (plain)
1
2
3
4
5
6
7
8
9
// Build don't link: 
// PRMS Id: 10860
class Beige
{
public:
    static int yellow();
    void white(int green = yellow());
    void aqua(int green = Beige::yellow());
};