Retro68/gcc/gcc/testsuite/gfortran.dg/class_allocate_24.f90
2017-10-07 02:16:47 +02:00

17 lines
322 B
Fortran

! { dg-do compile }
! { dg-options "-fcheck=mem" }
!
! Compile time check only, to test that the ICE is fixed in the assignment of the
! default initializer of the class to sf.
implicit none
type :: t
integer, pointer :: data => null ()
end type
class(t), dimension(:), allocatable :: sf
allocate (t :: sf (1))
end