OSDN Git Service

2012-01-29 Tobias Burnus <burnus@net-b.de>
[pf3gnuchains/gcc-fork.git] / gcc / testsuite / gfortran.dg / default_initialization_6.f90
1 ! { dg-do compile }
2 !
3 ! PR fortran/41600
4 !
5   implicit none
6   type t
7      integer :: X = -999.0
8   end type t
9   class(t), allocatable :: y(:)
10   allocate (t :: y(1))
11 end