1 | // Compile with "cl /c /Zi /GR- test-pdb.cpp" |
---|---|
2 | // Link with "link test-pdb.obj /debug /nodefaultlib /entry:main |
3 | // /out:test-pdb.exe" |
4 | |
5 | #include "test-pdb.h" |
6 | |
7 | int __cdecl _purecall(void) { return 0; } |
8 | |
9 | int main(int argc, char **argv) { return foo(n: argc) + bar(n: argc); } |
10 |