! Offloading test checking interaction of an implicit derived type mapping when ! mapped to target and assinging one derived type to another ! REQUIRES: flang, amdgpu ! RUN: %libomptarget-compile-fortran-run-and-check-generic program main type :: scalar integer(4) :: ix = 0 real(4) :: rx = 0.0 complex(4) :: zx = (0,0) end type scalar type(scalar) :: in type(scalar) :: out in%ix = 10 in%rx = 2.0 in%zx = (2, 10) !$omp target map(from:out) out = in !$omp end target print*, in%ix print*, in%rx write (*,*) in%zx print*, out%ix print*, out%rx write (*,*) out%zx end program main !CHECK: 10 !CHECK: 2. !CHECK: (2.,10.) !CHECK: 10 !CHECK: 2. !CHECK: (2.,10.)