aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/gfortran.dg/gomp/map-alloc-comp-1.f90
blob: 0c4429677bdb5b030559e80210b72e149eb3b2f1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
!
! ALLOCATABLE COMPONENTS:
! - OpenMP 5: Permitted (and automatically recursively mapped)
!   -> Not yet supported.
! - OpenMP 4.5: Not permitted.
!
implicit none (type, external)
type sct
  integer, allocatable :: c
end type
type(sct) var

!$omp target enter data map(to:var)  ! { dg-error "allocatable components is not permitted in map clause" }
end