[clangd] Re-land "support outgoing calls in call hierarchy" (#117673)
[llvm-project.git] / flang / test / Semantics / OpenMP / doconcurrent01.f90
blob7e3bdce871dd4f11e26730509e28725f26c049cc
1 ! RUN: %python %S/../test_symbols.py %s %flang_fc1 -fopenmp
3 ! OpenMP 5.1.1
4 ! DO Concurrent indices are private
6 !DEF: /private_iv (Subroutine)Subprogram
7 subroutine private_iv
8 !DEF: /private_iv/i ObjectEntity INTEGER(4)
9 integer i
10 !$omp parallel default(private)
11 !$omp single
12 !DEF: /private_iv/OtherConstruct1/i (OmpPrivate, OmpPreDetermined) HostAssoc INTEGER(4)
13 do concurrent(i=1:2)
14 end do
15 !$omp end single
16 !$omp end parallel
17 end subroutine