aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/gfortran.dg/gomp/polymorphic-mapping-2.f90
blob: e25db68094ad5c6f5b9ffb484dac0729fcd3e78b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
type t
  integer :: t
end type t
class(t), target, allocatable :: c, ca(:)
class(*), pointer :: p, pa(:)
integer :: x
logical ll
allocate( t :: c, ca(5))
p => c
pa => ca

!$omp target  !  { dg-warning "Implicit mapping of polymorphic variable 'ca' is unspecified behavior \\\[-Wopenmp\\\]" }
  ll = allocated(ca)
!$omp end target 

end