()
| 28 | // Flags: --stack-size=100 |
| 29 | |
| 30 | function overflow() { |
| 31 | var a, b, c, d, e; // Allocates some locals on the function's stack frame. |
| 32 | overflow(); |
| 33 | } |
| 34 | function rec1(a) { rec1(a+1); } |
| 35 | function rec2(a) { rec3(a+1); } |
| 36 | function rec3(a) { rec2(a+1); } |
no outgoing calls
no test coverage detected
searching dependent graphs…