repo.or.cz
/
llvm-project.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
[clangd] Re-land "support outgoing calls in call hierarchy" (#117673)
[llvm-project.git]
/
flang
/
test
/
Semantics
/
OpenMP
/
declare-mapper02.f90
blob
a62a7f8d0a392db0f604d7d645ca0bba9aa79ee1
1
! RUN: %python %S/../test_errors.py %s %flang -fopenmp -fopenmp-version=50
2
! Test the declare mapper construct with abstract type.
3
4
type
,
abstract
::
t1
5
integer
::
y
6
end type
t1
7
8
!ERROR: ABSTRACT derived type may not be used here
9
!$omp declare mapper(mm : t1::x) map(x, x%y)
10
end