aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/gfortran.dg/goacc/array-with-dt-6.f90
blob: adac8e3945eb3cd707a47150739b68005f4ce830 (plain)
1
2
3
4
5
6
7
8
9
10
type t
  integer :: i, j
end type t
type t2
  type(t) :: b(4)
end type
type(t2) :: var(10)
!$acc update host(var(3)%b(:)%j)  ! { dg-error "not a proper array section" }
!$acc update host(var(3)%b%j)  ! { dg-error "not a proper array section" }
end