(root)/
gcc-13.2.0/
gcc/
testsuite/
gfortran.fortran-torture/
execute/
constructor.f90
! Program to test array constructors
program constructors
   integer, dimension (4) :: a
   integer, dimension (3, 2) :: b
   integer i, j, k, l, m, n

   a = (/1, (i,i=2,4)/)
   do i = 1, 4
      if (a(i) .ne. i) STOP 1
   end do

   b = reshape ((/0, 1, 2, 3, 4, 5/), (/3, 2/)) + 1
   do i=1,3
      if (b(i, 1) .ne. i) STOP 2
      if (b(i, 2) .ne. i + 3) STOP 3
   end do

   k = 1
   l = 2
   m = 3
   n = 4
   ! The remainder assumes constant constructors work ok.
   a = (/n, m, l, k/)
   if (any (a .ne. (/4, 3, 2, 1/))) STOP 4
   a = (/((/i+10, 42/), i = k, l)/)
   if (any (a .ne. (/11, 42, 12, 42/))) STOP 5
   a = (/(I, I=k,l) , (J, J=m,n)/)
   if (any (a .ne. (/1, 2, 3, 4/))) STOP 6
end program