2011-12-11 Paul Thomas <pault@gcc.gnu.org>
[official-gcc.git] / gcc / testsuite / gfortran.dg / class_array_8.f03
blob20c57ec03ff091d4ac3fec631c275ccb0ff8370b
1 ! { dg-do run }
2 ! PR43969 - class array implementation
4 ! Contributed by Janus Weil  <janus@gcc.gnu.org>
6   implicit none
8   type indx_map
9   end type
11   type desc_type
12     class(indx_map), allocatable :: indxmap(:)
13   end type
15   type(desc_type)  :: desc
16   if (allocated(desc%indxmap)) call abort()
18 end