1// Static function
2namespace {
3static long StaticFunction(int a)
4{
5 return 2;
6}
7}
8
9// Inlined function
10static inline int InlinedFunction(long a) { return 10; }
11
12void FunctionCall()
13{
14 StaticFunction(a: 1);
15 InlinedFunction(a: 1);
16}
17

source code of lldb/test/Shell/SymbolFile/PDB/Inputs/FuncSymbols.cpp