blob: 0fd98c05be2d97e4c46597086c6207ba148901c1 [file] [log] [blame]
! { dg-do compile }
!
! PR fortran/105379
! Type comparison of class containers used to trigger an ICE when one of the
! class containers had a non-constant array spec.
!
! Contributed by Gerhard Steinmetz <gscfq@t-online.de>.
program p
type t
end type
integer :: m = 3
contains
subroutine s1(x)
class(t) :: x(3)
end
subroutine s3(x)
class(t) :: x(m)
end
end