blob: 20c57ec03ff091d4ac3fec631c275ccb0ff8370b [file] [log] [blame]
! { dg-do run }
! PR43969 - class array implementation
!
! Contributed by Janus Weil <janus@gcc.gnu.org>
!
implicit none
type indx_map
end type
type desc_type
class(indx_map), allocatable :: indxmap(:)
end type
type(desc_type) :: desc
if (allocated(desc%indxmap)) call abort()
end