view gcc/testsuite/gfortran.dg/proc_ptr_comp_10.f90 @ 152:2b5abeee2509

update gcc11
author anatofuz
date Mon, 25 May 2020 07:50:57 +0900
parents 04ced10e8804
children
line wrap: on
line source

! { dg-do compile }
!
! PR 40176:  Fortran 2003: Procedure pointers with array return value
!
! Contributed by Janus Weil <janus@gcc.gnu.org>

module m

abstract interface
  function ai()
    real, dimension(3) :: ai
  end function
end interface

type t
  procedure(ai), pointer, nopass :: ppc
end type

procedure(ai), pointer :: pp

end module

program test
use m
type(t) :: obj
obj%ppc => pp
pp => obj%ppc
end