c: Fix up pointer types to may_alias structures [PR114493]
[official-gcc.git] / gcc / testsuite / gfortran.dg / default_initialization_6.f90
blob6af65bc6e45b6e53a4b6b7b8eb6b1b930f0962a2
1 ! { dg-do compile }
3 ! PR fortran/41600
5 implicit none
6 type t
7 integer :: X = -999.0
8 end type t
9 class(t), allocatable :: y(:)
10 allocate (t :: y(1))
11 end