#include <thread>
#include <pthread.h>
#include <signal.h>

int main()
{
    std::thread foot([](){for(;;);});
    pthread_kill(foot.native_handle(), SIGSEGV);
    return 0;
}
