| 200 | static volatile void* global_p; |
| 201 | |
| 202 | static void t1main() { |
| 203 | mi_heap_t* heap = mi_heap_new(); |
| 204 | global_p = mi_heap_malloc(heap, 1024); |
| 205 | mi_heap_delete(heap); |
| 206 | } |
| 207 | |
| 208 | static void heap_late_free() { |
| 209 | auto t1 = std::thread(t1main); |
nothing calls this directly
no test coverage detected