1// Tests pthread_exit.2// RUN: %clang_hwasan %s -o %t && %run %t3 4#include <pthread.h>5int main() { pthread_exit(NULL); }6