[clangd] Re-land "support outgoing calls in call hierarchy" (#117673)
[llvm-project.git] / flang / test / Semantics / OpenMP / depend04.f90
blob8bdddb017d2c9d928aa8f7c1c10d15426570f58a
1 !RUN: %python %S/../test_errors.py %s %flang -fopenmp -fopenmp-version=50
3 subroutine f00
4 integer :: x
5 common /cc/ x
6 !ERROR: Common block name ('cc') cannot appear in a DEPEND clause
7 !$omp task depend(in: /cc/)
8 x = 0
9 !$omp end task
10 end