brintos

brintos / llvm-project-archived public Read only

0
0
Text · 183 B · eca1ead Raw
14 lines · cpp
1int bottom () { 2  return 1;  // Set a breakpoint here3} 4int foo(int in) { 5  if (in > 0)6    return foo(--in) + 5; 7  else8    return bottom();9}10int main()11{12   return foo(500);13}14