aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/gcc/testsuite/gfortran.dg/dependency_34.f90
blob: db6ba01f9de866ff09b5679ff79c7aa9ae7d4c6e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
! { dg-do compile }
! { dg-options "-Warray-temporaries" }
module foo
  implicit none
contains
  integer pure  function bar(i,j)
    integer, intent(in) :: i,j
    bar = 3 - i + 1 * abs(i) + j
  end function bar
end module foo

program main
  use foo
  implicit none
  real a(10)
  integer :: i
  read (*,*) a, i
  a(i:abs(i)) = a(i:abs(i))
  a(bar(i,i+2):2) = a(bar(i,i+2):2)
  a(int(i,kind=2):5) = a(int(i,kind=2)+1:6)
end program main