aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/gcc/testsuite/gfortran.dg/array_constructor_type_8.f03
blob: 9be467def6778a2a9e59a78c7124e910bf002533 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
! { dg-do run }
!
! PR fortran/27997
!
! Array constructor with typespec, check for regression
!
program test
  implicit none
  type :: real_info
    integer :: kind
  end type real_info
  type (real_info) :: real_infos(1) = (/ real_info (4) /)
end program test