| 31 | void collect_trace(StackTrace &st) { st.load_here(); } |
| 32 | |
| 33 | TEST(minitrace) { |
| 34 | Printer printer; |
| 35 | |
| 36 | StackTrace st; |
| 37 | collect_trace(st); |
| 38 | |
| 39 | printer.print(st, std::cout); |
| 40 | } |
| 41 | |
| 42 | void d(StackTrace &st) { st.load_here(); } |
| 43 |
nothing calls this directly
no test coverage detected