aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/gcc/testsuite/gfortran.dg/proc_ptr_23.f90
blob: ee947122f2b2fae241e31da71fdfefbb8c5f64ff (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
! { dg-do run }
!
! PR 41106: [F03] Procedure Pointers with CHARACTER results
!
! Contributed by Janus Weil <janus@gcc.gnu.org>

character(len=5) :: str
procedure(character(len=5)), pointer :: pp
pp => abc
print *,pp()
str = pp()
if (str/='abcde') call abort()
contains
 function abc()
  character(len=5) :: abc
  abc = 'abcde'
 end function abc
end