[clangd] Re-land "support outgoing calls in call hierarchy" (#117673)
[llvm-project.git] / flang / test / Semantics / OpenMP / depend05.f90
blob3ca091ef3187d15161d23fb2dac58bf28aa75353
1 !RUN: %python %S/../test_errors.py %s %flang -fopenmp -fopenmp-version=45 -Werror
3 subroutine f00(x)
4 integer :: x(10)
5 !WARNING: 'iterator' modifier is not supported in OpenMP v4.5, try -fopenmp-version=50
6 !$omp task depend(iterator(i = 1:10), in: x(i))
7 x = 0
8 !$omp end task
9 end