xref: /llvm-project/lldb/test/Shell/SymbolFile/PDB/Inputs/FunctionLevelLinkingTest.cpp (revision 87aa9c9e4d41ed881453e2fab85b3d25f648bb55)
1 #include "FunctionLevelLinkingTest.h"
2 
foo()3 int foo() {
4   return 0;
5 }
6 
main()7 int main() {
8   return foo() + bar() + baz();
9 }
10