Retro68/gcc/gcc/testsuite/gfortran.dg/array_constructor_type_12.f03
2018-12-28 16:30:48 +01:00

13 lines
197 B
Fortran

! { dg-do run }
!
! PR fortran/27997
!
! Array constructor with typespec.
!
real :: a(3)
integer :: j(3)
a = (/ integer :: 1.4, 2.2, 3.33 /)
j = (/ 1.4, 2.2, 3.33 /)
if( any(a /= j )) STOP 1
end