1 ! RUN: %python %S/../test_errors.py %s %flang -fopenmp
3 ! 2.15.4.1 copyin Clause
4 ! A list item that appears in a copyin clause must be threadprivate
10 integer :: a(10), b(10)
12 !$omp threadprivate(j, k)
17 !$omp parallel do copyin(j, k)
26 end program omp_copyin