llvm/flang/test/Semantics/OpenMP/parallel-critical-do.f90

! RUN: %python %S/../test_symbols.py %s %flang_fc1 -fopenmp

! Check that loop iteration variables are private and predetermined, even when
! nested inside parallel/critical constructs.

!DEF: /test1 (Subroutine) Subprogram
subroutine test1
  !DEF: /test1/i ObjectEntity INTEGER(4)
  integer i

  !$omp parallel default(none)
    !$omp critical
      !DEF: /test1/OtherConstruct1/i (OmpPrivate, OmpPreDetermined) HostAssoc INTEGER(4)
      do i = 1, 10
      end do
    !$omp end critical
  !$omp end parallel
end subroutine