llvm/clang-tools-extra/test/modularize/Inputs/SomeDecls.h

// Declare a couple of functions - no modules problems.

void FuncOne();

int FuncTwo(int arg);

void FuncOverload(int arg) {}
void FuncOverload(char *arg) {}

namespace Namespace1 {
  void FuncNameSpace() {}
}

namespace Namespace2 {
  void FuncNameSpace() {}
}