summaryrefslogtreecommitdiff
path: root/gcc/testsuite/gfortran.dg/pr67496.f90
blob: 754310262bda5386a3f81070ed15d845b18ae15d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
! 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