c: Fix up pointer types to may_alias structures [PR114493]
[official-gcc.git] / gcc / testsuite / gfortran.dg / alloc_comp_basics_7.f90
blob7229630216996d359cb1bc583b87df4e00ac9de0
1 ! { dg-do compile }
3 ! PR 86888: [F08] allocatable components of indirectly recursive type
5 ! Contributed by Janus Weil <janus@gcc.gnu.org>
7 type :: s
8 type(t), allocatable :: x
9 end type
11 type :: t
12 type(s), allocatable :: y
13 end type
15 end