re PR fortran/78741 (ICE in gfc_get_symbol_decl, at fortran/trans-decl.c:1534)
[official-gcc.git] / gcc / testsuite / gfortran.dg / class_allocate_24.f90
blob883247dd7b886ff6e66aa4147b27f7cd75db33a4
1 ! { dg-do compile }
2 ! { dg-options "-fcheck=mem" }
3 !
4 ! Compile time check only, to test that the ICE is fixed in the assignment of the
5 ! default initializer of the class to sf.
7 implicit none
9 type :: t
10 integer, pointer :: data => null ()
11 end type
13 class(t), dimension(:), allocatable :: sf
14 allocate (t :: sf (1))
15 end