blob: 754310262bda5386a3f81070ed15d845b18ae15d [file] [log] [blame]
! PR fortran/67496
! { dg-do compile }
type :: a
end type a
type :: b
type (a) :: j(1)
end type b
type(a) :: x
type(b) :: y
y = b((/x/))
end