blob: af9bd7887abdc0915d8fb775b8db68d79a42db7f [file] [log] [blame]
#include <stdlib.h>
#include <omp.h>
int
main ()
{
#pragma omp target if (0)
#pragma omp teams thread_limit (1)
if (omp_get_thread_limit () != 1)
abort ();
return 0;
}