[clang][modules] Don't prevent translation of FW_Private includes when explicitly...
[llvm-project.git] / lldb / test / Shell / SymbolFile / PDB / Inputs / FuncSymbols.cpp
blobccccf6ffd1085366ddee46cd1c7b52020f78a28d
1 // Static function
2 namespace {
3 static long StaticFunction(int a)
5 return 2;
9 // Inlined function
10 static inline int InlinedFunction(long a) { return 10; }
12 void FunctionCall()
14 StaticFunction(1);
15 InlinedFunction(1);