[flang] Fix length handling in character kind implicit conversion (#74586)
[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);