| 9 | #include <stdio.h> |
| 10 | |
| 11 | int test(int i) { |
| 12 | int x = 10; |
| 13 | int ret = (long)&x; // both for the number, and forces x to not be nativized |
| 14 | if (i > 0) { |
| 15 | if ((i % 2001) != 1500) |
| 16 | return test(i - 1); |
| 17 | else |
| 18 | return test(i - 1) + test(i - 2); |
| 19 | } |
| 20 | return ret; |
| 21 | } |
| 22 | |
| 23 | int main(int argc, char **argv) { |
| 24 | // We should get the same value for the first and last - stack has unwound |
no outgoing calls
no test coverage detected