llvm-project/lldb/unittests/SymbolFile/PDB/Inputs/test-pdb.cpp

16 lines
271 B
C++

// Compile with "cl /c /Zi /GR- test-pdb.cpp"
// Link with "link test-pdb.obj /debug /nodefaultlib /entry:main /out:test-pdb.exe"
#include "test-pdb.h"
int __cdecl _purecall(void)
{
return 0;
}
int
main(int argc, char **argv)
{
return foo(argc) + bar(argc);
}