1 // { dg-do assemble  }
2 // PRMS Id: 10860
3 class Beige
4 {
5 public:
6     static int yellow();
7     void white(int green = yellow());
8     void aqua(int green = Beige::yellow());
9 };
10