3 ! Tests the fix for PR66465, in which the arguments of the call to
4 ! ASSOCIATED were falsly detected to have different type/kind.
6 ! Contributed by Damian Rouson <damian@sourceryinstitute.org>
9 real function HandlerInterface (arg
)
14 type TextHandlerTestCase
15 procedure (HandlerInterface
), nopass
, pointer :: handlerOut
=>null()
18 type(TextHandlerTestCase
) this
20 procedure (HandlerInterface
), pointer :: procPtr
=>null()
22 print*, associated(procPtr
, this
%handlerOut
)