c: Fix up pointer types to may_alias structures [PR114493]
[official-gcc.git] / gcc / testsuite / gfortran.dg / pr67496.f90
blob754310262bda5386a3f81070ed15d845b18ae15d
1 ! PR fortran/67496
2 ! { dg-do compile }
4 type :: a
5 end type a
6 type :: b
7 type (a) :: j(1)
8 end type b
9 type(a) :: x
10 type(b) :: y
11 y = b((/x/))
12 end