1*c1e93e5fSZachary Turner // Build with cl: 2*c1e93e5fSZachary Turner // cl.exe /Z7 pdb-diff.cpp /link /debug /pdb:pdb-diff-cl.pdb 3*c1e93e5fSZachary Turner // /nodefaultlib /entry:main 4*c1e93e5fSZachary Turner // Build with lld (after running the above cl command): 5*c1e93e5fSZachary Turner // lld-link.exe /debug /pdb:pdb-diff-lld.pdb /nodefaultlib 6*c1e93e5fSZachary Turner // /entry:main pdb-diff.obj 7*c1e93e5fSZachary Turner 8*c1e93e5fSZachary Turner void *__purecall = 0; 9*c1e93e5fSZachary Turner main()10*c1e93e5fSZachary Turnerint main() { return 42; } 11