3 ! PR 41106: [F03] Procedure Pointers with CHARACTER results
5 ! Contributed by Janus Weil <janus@gcc.gnu.org>
9 procedure(abc
), pointer, nopass
:: ptr
13 character(len
=5),pointer :: abc
14 character(len
=5),target
:: arg
21 character(len
=5) :: str
= 'abcde'
22 character(len
=5), pointer :: strptr
26 if (strptr
/='abcde') call abort()
28 if (strptr
/='fghij') call abort()