aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/gcc/testsuite/gfortran.dg/array_constructor_7.f90
blob: 65ec26c8750b7922569fbb31ce3b8194981249ef (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
! Like array_constructor_6.f90, but test for nested iterators.
! { dg-do run }
program main
  implicit none
  call build (17)
contains
  subroutine build (order)
    integer :: order, i, j

    call test (order, (/ (((j + 100) * i, j = 1, i), i = 1, order) /))
    call test (9, (/ (((j + 100) * i, j = 1, i), i = 1, 9) /))
    call test (3, (/ 101, 202, 204, 303, 306, 309 /))
  end subroutine build

  subroutine test (order, values)
    integer, dimension (:) :: values
    integer :: order, i, j

    if (size (values, dim = 1) .ne. order * (order + 1) / 2) call abort
    do i = 1, order
      do j = 1, i
        if (values (i * (i - 1) / 2 + j) .ne. (j + 100) * i) call abort
      end do
    end do
  end subroutine test
end program main