1 ! RUN: %S/test_errors.sh %s %t %flang_fc1 -fopenmp
5 ! The loop iteration variable may not appear in a threadprivate directive.
9 integer, save:: i
, j
, k
,n
10 !$omp threadprivate(k,j,i)
12 !ERROR: Loop iteration variable i is not allowed in THREADPRIVATE.
14 !ERROR: Loop iteration variable j is not allowed in THREADPRIVATE.
23 !$omp threadprivate(k,j,i)
25 !ERROR: Loop iteration variable i is not allowed in THREADPRIVATE.
36 !$omp threadprivate(k)
37 !$omp threadprivate(j)
41 !$omp do ordered(1) collapse(1)
42 !ERROR: Loop iteration variable k is not allowed in THREADPRIVATE.
54 !$omp threadprivate(i)
59 !ERROR: Loop iteration variable i is not allowed in THREADPRIVATE.
71 integer, save:: i
, j
, k
,n
72 !$omp threadprivate(i)
73 !$omp threadprivate(j)
83 !ERROR: Loop iteration variable i is not allowed in THREADPRIVATE.
95 !ERROR: Loop iteration variable j is not allowed in THREADPRIVATE.