aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/gcc/testsuite/gfortran.dg/proc_ptr_comp_16.f90
blob: ff5634b4e8d0aad632f85939f2de3a0d50be6492 (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
! { 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