| 48 | } |
| 49 | |
| 50 | BOOST_NOINLINE boost::stacktrace::stacktrace rec2(int i) { |
| 51 | if (i < 5) { |
| 52 | if (!i) return boost::stacktrace::stacktrace(); |
| 53 | return rec2(--i); |
| 54 | } |
| 55 | |
| 56 | return rec2(i - 2); |
| 57 | } |
| 58 | |
| 59 | int main() { |
| 60 | dump_compact(rec1(8)); |
nothing calls this directly
no outgoing calls
no test coverage detected