aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/gfortran.dg/pr88379.f90
blob: 48a23af50c522a37253b4479ed3378a260439e50 (plain)
1
2
3
4
5
6
7
8
9
10
11
! { 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