blob: 6af65bc6e45b6e53a4b6b7b8eb6b1b930f0962a2 [file] [log] [blame]
! { dg-do compile }
!
! PR fortran/41600
!
implicit none
type t
integer :: X = -999.0
end type t
class(t), allocatable :: y(:)
allocate (t :: y(1))
end