aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/gcc/testsuite/gfortran.dg/array_function_1.f90
blob: 281ae88b852b7dcae8e1241ff4781dec73f76e51 (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
27
! { dg-do run }
! PR fortran/30720
program array_function_1
  integer :: a(5), b, l, u
  l = 4
  u = 2

  a = (/ 1, 2, 3, 4, 5 /)

  b = f(a(l:u) - 2)
  if (b /= 0) call abort

  b = f(a(4:2) - 2)
  if (b /= 0) call abort

  b = f(a(u:l) - 2)
  if (b /= 3) call abort

  b = f(a(2:4) - 2)
  if (b /= 3) call abort

  contains
    integer function f(x)
      integer, dimension(:), intent(in) :: x
      f = sum(x)
    end function
end program