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