blob: cfe498b0ecab36f3daff37b3dd396968ad8d4a7e (
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
28
29
30
31
32
|
! { 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(arg)
character(len=5),pointer :: abc
character(len=5),target :: arg
abc => arg
end function abc
end module m
use m
type(t) :: x
character(len=5) :: str = 'abcde'
character(len=5), pointer :: strptr
x%ptr => abc
print *,x%ptr(str)
strptr => x%ptr(str)
if (strptr/='abcde') call abort()
str = 'fghij'
if (strptr/='fghij') call abort()
end
! { dg-final { cleanup-modules "m" } }
|