blob: 5a1a70ac9186c0fd65aae7793f36a1169a4c90d3 [file] [log] [blame]
subroutine one
implicit none
type t
class(*), allocatable :: ul
end type
type(t) :: var
!$omp target enter data map(to:var) ! { dg-error "Mapping of unlimited polymorphic list item 'var.ul' is unspecified behavior and unsupported" }
end