6 void *sleep_worker(void *in
) {
12 void *crash_worker(void *in
) {
14 volatile int *p
= nullptr; // break here
19 std::vector
<std::thread
> threads
;
20 threads
.push_back(std::move(std::thread(crash_worker
, nullptr)));
21 for (int i
= 0; i
< 15; i
++)
22 threads
.push_back(std::move(std::thread(sleep_worker
, nullptr)));