(root)/
gcc-13.2.0/
gcc/
testsuite/
gfortran.dg/
default_initialization_6.f90
! { 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