view gcc/testsuite/gfortran.dg/proc_ptr_comp_16.f90 @ 118:fd00160c1b76

ifdef TARGET_64BIT
author mir3636
date Tue, 27 Feb 2018 15:01:35 +0900
parents 04ced10e8804
children 84e7813d76e9
line wrap: on
line source

! { dg-do run }
!
! PR 41106: [F03] Procedure Pointers with CHARACTER results
!
! Contributed by Janus Weil <janus@gcc.gnu.org>

module m
 type :: t
  procedure(abc), pointer, nopass :: ptr
 end type
contains
 function abc(i)
  integer :: i
  character(len=i) :: abc
  abc = 'abcde'
 end function abc
end module m

use m
 type(t) :: x
 character(len=4) :: str
 x%ptr => abc
 print *,x%ptr(4)
 if (x%ptr(4)/='abcd') call abort
 str = x%ptr(3)
 if (str/='abc') call abort()
end