aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/gfortran.dg/pr100949.f90
blob: 6c736fd7f729cda724c2665126222212b861716d (plain)
1
2
3
4
5
6
7
8
9
10
! { dg-do compile }
! PR fortran/100949 - ICE in gfc_conv_expr_present, at fortran/trans-expr.c:1975

subroutine s
entry f
  type t
  end type
  class(t), allocatable :: y, z
  allocate (z, mold=y)
end