(root)/
gcc-13.2.0/
gcc/
testsuite/
gfortran.dg/
alloc_comp_basics_7.f90
! { dg-do compile }
!
! PR 86888: [F08] allocatable components of indirectly recursive type
!
! Contributed by Janus Weil <janus@gcc.gnu.org>

type :: s
   type(t), allocatable :: x
end type

type :: t
   type(s), allocatable :: y
end type

end