view gcc/testsuite/gfortran.dg/proc_decl_14.f90 @ 158:494b0b89df80 default tip

...
author Shinji KONO <kono@ie.u-ryukyu.ac.jp>
date Mon, 25 May 2020 18:13:55 +0900
parents 04ced10e8804
children
line wrap: on
line source

! { dg-do compile }
! PR fortran/35830
!
abstract interface
  function ptrfunc()
    integer, pointer :: ptrfunc
  end function ptrfunc
  elemental subroutine elem(a)
    integer,intent(in) :: a
  end subroutine elem
  function dims()
    integer :: dims(3)
  end function dims
end interface

procedure(ptrfunc) :: func_a
procedure(elem)    :: func_b
procedure(dims)     :: func_c

integer, pointer :: ptr
integer :: array(3)

ptr => func_a()
call func_b([1,2,3])
array = func_c()
end