| 31 | } |
| 32 | |
| 33 | void nested_function_b(int depth) { |
| 34 | CTRACK; |
| 35 | if (depth > 0) { |
| 36 | sleepy_function(3); |
| 37 | nested_function_b(depth - 1); |
| 38 | } |
| 39 | if (depth == 3) { // Hidden slow path |
| 40 | sleepy_function(100); |
| 41 | } |
| 42 | } |
| 43 | |
| 44 | void complex_operation(int id) { |
| 45 | CTRACK; |
no test coverage detected