1 ! RUN: %python %S/../test_errors.py %s %flang -fopenmp
3 ! 2.15.4.1 copyin Clause
4 ! A common block name that appears in a copyin clause must be declared to be
5 ! a common block in the same scoping unit in which the copyin clause appears.
12 subroutine copyin_clause()
16 !$omp threadprivate(/cmn/)
18 !$omp parallel copyin(/cmn/)
21 end subroutine copyin_clause