blob: 48a23af50c522a37253b4479ed3378a260439e50 [file] [log] [blame]
! { dg-do compile }
! { dg-options "-fcoarray=single" }
! PR fortran/88379 - ICE with allocatable coarray, class and associate
program p
type t
end type t
class(t), allocatable :: x[:]
associate (y => x)
end associate
end