1type t
2   integer, allocatable :: A(:,:)
3end type t
4
5type(t), allocatable :: b(:)
6
7!$acc update host(b(::2))
8!$acc update host(b(1)%A(::3,::4))
9end
10
11