aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/gcc/testsuite/gfortran.dg/proc_decl_18.f90
blob: c4216135106b90fe1fbf50d4cc76c01ff5e8914c (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
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
! { dg-do run }
!
! PR 36322/36463
!
! Contributed by Janus Weil <janus@gcc.gnu.org>

module m

contains

  pure integer function mysize(a)
    integer,intent(in) :: a(:)
    mysize = size(a)
  end function

end module


program prog

use m
implicit none

abstract interface
  function abs_fun(x,sz)
    integer,intent(in) :: x(:)
    interface
      pure integer function sz(b)
        integer,intent(in) :: b(:)
      end function
    end interface
    integer :: abs_fun(sz(x))
  end function
end interface

procedure(abs_fun) :: p

integer :: k,j(3),i(3) = (/1,2,3/)

j = p(i,mysize)

do k=1,mysize(i)
  if (j(k) /= 2*i(k)) call abort()
end do

end

  function p(y,asz)
    implicit none
    integer,intent(in) :: y(:)
    interface
      pure integer function asz(c)
        integer,intent(in) :: c(:)
      end function
    end interface
    integer :: p(asz(y))
    integer l
    do l=1,asz(y)
      p(l) = y(l)*2
    end do
  end function