1 ! RUN: %python %S/../test_errors.py %s %flang -fopenmp
3 ! 2.15.3.3 private Clause
4 ! Pointers with the INTENT(IN) attribute may not appear in a private clause.
6 subroutine omp_private(p
)
7 integer :: a(10), b(10), c(10)
8 integer, pointer, intent(in
) :: p
13 !ERROR: Pointer 'p' with the INTENT(IN) attribute may not appear in a PRIVATE clause
14 !$omp parallel private(p)
20 end subroutine omp_private