// This is a test program that makes a deep stack// so we can test unwinding from multiple threads.voidcall_me(int input) {if(input >1000) {
input +=1;// Set a breakpoint hereif(input >1001)
input +=1;return;}elsecall_me(++input);}intmain() {call_me(0);return0;}