summaryrefslogtreecommitdiffstats
path: root/test/input/Function-Argument-default-ns.cxx
blob: 74370b9a322062d8cd088e98102898e59d3c33b2 (plain)
1
2
3
4
5
6
7
8
namespace start {
static int const C = 0;
enum
{
  E = 0
};
void f(int = C, int = E);
}