1 // Compile with "cl /c /Zi /GR- test-pdb-alt.cpp"
2 // Link with "link test-pdb.obj test-pdb-alt.obj /debug /nodefaultlib /entry:main /out:test-pdb.exe"
3 
4 #include "test-pdb.h"
5 
6 int bar(int n)
7 {
8     return n-1;
9 }
10