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.
5 ! Named variables appearing in a threadprivate common block may be specified
6 ! It is not necessary to specify the whole common block.
10 integer :: a(10), b(10)
13 !$omp threadprivate(/cmn/)
18 !$omp parallel copyin(/cmn/)
26 !$omp parallel copyin(j, k)
33 end program omp_copyin