1 ! RUN: %python %S/../test_errors.py %s %flang_fc1 -fopenmp
3 ! 2.15.4.2 copyprivate Clause
4 ! Pointers with the INTENT(IN) attribute may not appear in a copyprivate clause.
6 subroutine omp_copyprivate(p
)
7 integer :: a(10), b(10), c(10)
8 integer, pointer, intent(in
) :: p
16 !ERROR: COPYPRIVATE variable 'p' is not PRIVATE or THREADPRIVATE in outer context
17 !ERROR: Pointer 'p' with the INTENT(IN) attribute may not appear in a COPYPRIVATE clause
18 !$omp end single copyprivate(p)
23 end subroutine omp_copyprivate