[clangd] Re-land "support outgoing calls in call hierarchy" (#117673)
[llvm-project.git] / flang / test / Semantics / OpenMP / declare-mapper02.f90
bloba62a7f8d0a392db0f604d7d645ca0bba9aa79ee1
1 ! RUN: %python %S/../test_errors.py %s %flang -fopenmp -fopenmp-version=50
2 ! Test the declare mapper construct with abstract type.
4 type, abstract :: t1
5 integer :: y
6 end type t1
8 !ERROR: ABSTRACT derived type may not be used here
9 !$omp declare mapper(mm : t1::x) map(x, x%y)
10 end