PR inline-asm/84742
[official-gcc.git] / gcc / testsuite / gfortran.dg / proc_ptr_comp_16.f90
blob320db6f055cf9f10c46e9a00a360632c9d2603a9
1 ! { dg-do run }
3 ! PR 41106: [F03] Procedure Pointers with CHARACTER results
5 ! Contributed by Janus Weil <janus@gcc.gnu.org>
7 module m
8 type :: t
9 procedure(abc), pointer, nopass :: ptr
10 end type
11 contains
12 function abc(i)
13 integer :: i
14 character(len=i) :: abc
15 abc = 'abcde'
16 end function abc
17 end module m
19 use m
20 type(t) :: x
21 character(len=4) :: str
22 x%ptr => abc
23 print *,x%ptr(4)
24 if (x%ptr(4)/='abcd') STOP 1
25 str = x%ptr(3)
26 if (str/='abc') STOP 1
27 end