Files
clang-p2996/clang-tools-extra/test/modularize/Inputs/SomeDecls.h
John Thompson 0b7fc15e70 Undo r189834 - broke test.
llvm-svn: 189835
2013-09-03 18:38:32 +00:00

17 lines
263 B
C++

// 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() {}
}