bolt/deps/llvm-18.1.8/clang-tools-extra/test/modularize/Inputs/SomeDecls.h
2025-02-14 19:21:04 +01:00

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